1.0.2 • Published 2 years ago

@qinetik/uuid v1.0.2

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

UUID

A very small & lightweight UUID implementation

Here's its full source code

function uuidv4() {
    return "10000000-1000-4000-8000-100000000000".replace(/[018]/g, c =>
        (c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)
    );
}

export function generateUUID(): string {
    if (typeof crypto !== "undefined" && typeof crypto.randomUUID !== "undefined") {
        return crypto.randomUUID()
    } else {
        return uuidv4()
    }
}
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago