0
Fork 0
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:
Andrey Antukh 2016-04-24 21:51:01 +03:00
parent 6e4d243897
commit f102be51cb
No known key found for this signature in database
GPG key ID: 4DFEBCB8316A8B95

2
vendor/uuid/impl.js vendored
View file

@ -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);
};
})