mirror of
https://github.com/penpot/penpot.git
synced 2025-02-13 18:48:37 -05:00
Remove redundant UUID instance creation on vendor/uuid module.
This commit is contained in:
parent
6e4d243897
commit
f102be51cb
1 changed files with 1 additions and 1 deletions
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…
Add table
Reference in a new issue