9 lines
248 B
JavaScript
9 lines
248 B
JavaScript
/**
|
|
* Determines if the current platform is Windows
|
|
* @returns true if running on Windows, false otherwise
|
|
*/
|
|
export function isWindows() {
|
|
return (process.platform === 'win32' ||
|
|
/^(msys|cygwin)$/.test(process.env.OSTYPE || ''));
|
|
}
|