Files
actions-ansi-to-html/node_modules/npm/lib/utils/is-windows.js
T
2025-11-11 06:53:11 -05:00

7 lines
233 B
JavaScript

const isWindows = process.platform === 'win32'
const isWindowsShell = isWindows &&
!/^MINGW(32|64)$/.test(process.env.MSYSTEM) && process.env.TERM !== 'cygwin'
exports.isWindows = isWindows
exports.isWindowsShell = isWindowsShell