mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-07-28 11:48:29 -06:00
5 lines
177 B
JavaScript
5 lines
177 B
JavaScript
const isWindowsShell = (process.platform === 'win32') &&
|
|
!/^MINGW(32|64)$/.test(process.env.MSYSTEM) && process.env.TERM !== 'cygwin'
|
|
|
|
exports.isWindowsShell = isWindowsShell
|