diff --git a/vendor/uuid/impl.js b/vendor/uuid/impl.js index b79b2f4d34..07ad0bc038 100644 --- a/vendor/uuid/impl.js +++ b/vendor/uuid/impl.js @@ -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); }; })