mirror of
https://github.com/penpot/penpot.git
synced 2026-05-02 22:58:35 +00:00
Remove redundant UUID instance creation on vendor/uuid module.
This commit is contained in:
parent
6e4d243897
commit
f102be51cb
2
vendor/uuid/impl.js
vendored
2
vendor/uuid/impl.js
vendored
@ -42,6 +42,6 @@ goog.scope(function() {
|
||||
const buf = rng.getBytes(16);
|
||||
buf[6] = (buf[6] & 0x0f) | 0x40;
|
||||
buf[8] = (buf[8] & 0x3f) | 0x80;
|
||||
return cljs.core.uuid(toHexString(buf));
|
||||
return toHexString(buf);
|
||||
};
|
||||
})
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user