Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/library_uuid.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ mergeInto(LibraryManager.library, {
uuid[8] = (uuid[8] & 0x7F) | 0x80;
writeArrayToMemory(uuid, out);
},


// If uuid_generate is secure and random enough, we can just uuid_generate_random
uuid_generate_random : 'uuid_generate',

// Compares the value of the supplied 'compact' UUID variable uu to the NULL value.
// If the value is equal to the NULL UUID, 1 is returned, otherwise 0 is returned.
uuid_is_null: function(uu) {
Expand Down