관리-도구
편집 파일: is-windows.js
const isWindowsShell = (process.platform === 'win32') && !/^MINGW(32|64)$/.test(process.env.MSYSTEM) && process.env.TERM !== 'cygwin' exports.isWindowsShell = isWindowsShell