2026-02-01 13:01:28 +00:00

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 || ''));
}