UNPKG

193 BTypeScriptView Raw
1/**
2 * Returns `true` if the platform is windows.
3 */
4declare function isWindows(): boolean;
5
6// Export CJS function
7export = isWindows;
8
9// Export UMD namespace
10export as namespace isWindows;