// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. 'use strict'; // File without any dependencies on VS Code. export async function sleep(milliseconds: number) { return new Promise(resolve => setTimeout(resolve, milliseconds)); } // tslint:disable-next-line:no-empty export function noop() {} export const isWindows = /^win/.test(process.platform);