Skip to content

Instantly share code, notes, and snippets.

src/dstr-binding-for-await/default/for-await-of-async-func-let.template:43: macro name not found: body, in case: src/dstr-binding-for-await/ary-ptrn-rest-not-final-id.case
src/dstr-binding-for-await/default/for-await-of-async-gen-let-async.template:46: macro name not found: body, in case: src/dstr-binding-for-await/ary-ptrn-rest-not-final-id.case
src/dstr-binding-for-await/default/for-await-of-async-gen-var-async.template:46: macro name not found: body, in case: src/dstr-binding-for-await/ary-ptrn-rest-not-final-id.case
src/dstr-binding-for-await/default/for-await-of-async-gen-const.template:43: macro name not found: body, in case: src/dstr-binding-for-await/ary-ptrn-rest-not-final-id.case
src/dstr-binding-for-await/default/for-await-of-async-func-const.template:43: macro name not found: body, in case: src/dstr-binding-for-await/ary-ptrn-rest-not-final-id.case
src/dstr-binding-for-await/default/for-await-of-async-func-const-async.template:46: macro name not found: body, in case: src/dstr-binding-for-await/ary
@thejoshwolfe
thejoshwolfe / random128.js
Last active September 5, 2019 05:57
Generates a 128-bit random number as a string.
/** random 128-bit number as a string */
function random128() {
var result = "";
for (var i = 0; i < 8; i++)
result += String.fromCharCode(Math.random() * 0x10000);
return result;
}
/** random 128-bit number in canonical uuid format. all bits are random. */
function random128Hex() {
@thejoshwolfe
thejoshwolfe / README.md
Last active April 22, 2023 23:55
Plan for publishing the Hollow Knight Modding API to GitHub without infringing on copyright