mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-29 09:16:45 +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; | ||
|  | } |