web-blog/node_modules/cross-env/dist/is-windows.js

9 lines
248 B
JavaScript
Raw Permalink Normal View History

2026-05-29 18:34:34 +00:00
/**
* 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 || ''));
}