Skip to main content
Module

x/dinar/lib/utils/Uuid.ts

deno web framewrok maybe :<
Latest
File
export class Uuid { static v4() { const alpha = "abcdefghijklmnopqrstuvwxyz1234567890"; let result = ""; let bit = 24; while (bit--) { result += alpha[Math.floor(Math.random() * (alpha.length - 1))]; } return result; }}