Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/scenarios/test-cli/wkspc1/utils.js
13401 views
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
6
export function generateRandomNumber() {
7
try {
8
return Math.floor(Math.random() * Number.MAX_SAFE_INTEGER);
9
} catch (e) {
10
console.error('Error generating random number:', e);
11
throw e;
12
}
13
}
14
15