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 6export 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