mirror of
				https://github.com/louislam/uptime-kuma.git
				synced 2025-11-04 05:36:13 +08:00 
			
		
		
		
	const
This commit is contained in:
		@@ -117,7 +117,7 @@ export function getRandomInt(min: number, max: number) {
 | 
			
		||||
export function getCryptoRandomInt(min: number, max: number) {
 | 
			
		||||
    const randomBuffer = new Uint32Array(1);
 | 
			
		||||
    crypto.getRandomValues(randomBuffer);
 | 
			
		||||
    let randomNumber = randomBuffer[0] / (0xffffffff + 1);
 | 
			
		||||
    const randomNumber = randomBuffer[0] / (0xffffffff + 1);
 | 
			
		||||
    min = Math.ceil(min);
 | 
			
		||||
    max = Math.floor(max);
 | 
			
		||||
    return Math.floor(randomNumber * (max - min + 1)) + min;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user