From 3d1cd02f27518f1a04374c7c8320cd5d82ede6e9 Mon Sep 17 00:00:00 2001 From: Minteck Date: Thu, 23 Feb 2023 19:34:56 +0100 Subject: Updated 40 files, added 37 files, deleted 1103 files and renamed 3905 files (automated) --- together/node_modules/hexoid/dist/index.mjs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 together/node_modules/hexoid/dist/index.mjs (limited to 'together/node_modules/hexoid/dist/index.mjs') diff --git a/together/node_modules/hexoid/dist/index.mjs b/together/node_modules/hexoid/dist/index.mjs deleted file mode 100644 index b5e3fea..0000000 --- a/together/node_modules/hexoid/dist/index.mjs +++ /dev/null @@ -1,15 +0,0 @@ -var IDX=256, HEX=[]; -while (IDX--) HEX[IDX] = (IDX + 256).toString(16).substring(1); - -export default function (len) { - len = len || 16; - var str='', num=0; - return function () { - if (!str || num === 256) { - str=''; num=(1+len)/2 | 0; - while (num--) str += HEX[256 * Math.random() | 0]; - str = str.substring(num=0, len-2); - } - return str + HEX[num++]; - }; -} -- cgit