This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const crandomVal = () => (crypto.getRandomValues(new Uint32Array(1))[0] / (2 ** 32)) ; | |
const crandomInt = (a=1) => ~~((crypto.getRandomValues(new Uint32Array(1))[0] / (2 ** 32)) * a); | |
const crandomArr = (a=1, b=1) => [...crypto.getRandomValues(new Uint32Array(a))].map(v => (v / 2**32) * b); | |
const crandomIntArr = (a=1, b=1) => [...crypto.getRandomValues(new Uint32Array(a))].map(v => ~~((v / 2**32) * b)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const sortGoodBad = (r, f = x => Number(x)) => r.reduce( | |
(a, v) => (a[(f(v)) ? 0 : 1].push(v), a), [[], []] | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
<style> werk-er { display: none; } </style> | |
... | |
<werk-er id="zero"> | |
const f = new class { | |
constructor () { ... } | |
meth0 (x,y,z) { ... } | |
meth1 (x,y,z) { ... } | |
}(); | |
onmessage = (e, [a, ...b] = [...e.data]) => f[a](b); |
OlderNewer