UNPKG

692 BJavaScriptView Raw
1/*---------------------------------------------------------------------------------------------
2 * Copyright (c) Microsoft Corporation. All rights reserved.
3 * Licensed under the MIT License. See License.txt in the project root for license information.
4 *--------------------------------------------------------------------------------------------*/
5'use strict';
6Object.defineProperty(exports, "__esModule", { value: true });
7exports.isWindows = void 0;
8if (typeof process === 'object') {
9 exports.isWindows = process.platform === 'win32';
10}
11else if (typeof navigator === 'object') {
12 let userAgent = navigator.userAgent;
13 exports.isWindows = userAgent.indexOf('Windows') >= 0;
14}