mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 21:19:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			275 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			275 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function randomString(len) {
 | 
						|
    let text = "";
 | 
						|
    const possible = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
 | 
						|
 | 
						|
    for (let i = 0; i < len; i++) {
 | 
						|
        text += possible.charAt(Math.floor(Math.random() * possible.length));
 | 
						|
    }
 | 
						|
 | 
						|
    return text;
 | 
						|
} |