18 lines
735 B
TypeScript
18 lines
735 B
TypeScript
|
|
/*---------------------------------------------------------------------------------------------
|
||
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
|
*--------------------------------------------------------------------------------------------*/
|
||
|
|
|
||
|
|
export function getNonce() {
|
||
|
|
let text = '';
|
||
|
|
const possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
||
|
|
for (let i = 0; i < 32; i++) {
|
||
|
|
text += possible.charAt(Math.floor(Math.random() * possible.length));
|
||
|
|
}
|
||
|
|
return text;
|
||
|
|
}
|
||
|
|
|
||
|
|
export function pluralize(count: number, noun: string, suffix = 's') {
|
||
|
|
return `${count} ${noun}${count !== 1 ? suffix : ''}`;
|
||
|
|
}
|