summaryrefslogtreecommitdiff
path: root/together/node_modules/hexoid/dist/index.mjs
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-08-21 17:31:56 +0200
committerMinteck <contact@minteck.org>2022-08-21 17:31:56 +0200
commita2df9a69dcc14cb70118cda2ded499055e7ee358 (patch)
tree6dd283e4e9452d38bce81ddaaae49b5335755842 /together/node_modules/hexoid/dist/index.mjs
parent84dd0735820b16b60f600284d35183d76547a71f (diff)
downloadpluralconnect-a2df9a69dcc14cb70118cda2ded499055e7ee358.tar.gz
pluralconnect-a2df9a69dcc14cb70118cda2ded499055e7ee358.tar.bz2
pluralconnect-a2df9a69dcc14cb70118cda2ded499055e7ee358.zip
m. update
Diffstat (limited to 'together/node_modules/hexoid/dist/index.mjs')
-rw-r--r--together/node_modules/hexoid/dist/index.mjs15
1 files changed, 15 insertions, 0 deletions
diff --git a/together/node_modules/hexoid/dist/index.mjs b/together/node_modules/hexoid/dist/index.mjs
new file mode 100644
index 0000000..b5e3fea
--- /dev/null
+++ b/together/node_modules/hexoid/dist/index.mjs
@@ -0,0 +1,15 @@
+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++];
+ };
+}