From f102be51cbf39160a9ea70d2b3b9a91771b1533b Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sun, 24 Apr 2016 21:51:01 +0300 Subject: [PATCH] Remove redundant UUID instance creation on vendor/uuid module. --- vendor/uuid/impl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }; })