xref: /third_party/node/deps/npm/lib/utils/is-windows.js (revision 1cb0ef41)
  • Home
  • History
  • Annotate
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
  • only in /third_party/node/deps/npm/lib/utils/
1const isWindows = process.platform === 'win32'
2const isWindowsShell = isWindows &&
3  !/^MINGW(32|64)$/.test(process.env.MSYSTEM) && process.env.TERM !== 'cygwin'
4
5exports.isWindows = isWindows
6exports.isWindowsShell = isWindowsShell
7

Indexes created Thu Nov 07 10:32:03 CST 2024