New zifferjs documentation

This commit is contained in:
2023-12-09 23:47:12 +02:00
parent 204a5ae2ab
commit 819cca4385
12 changed files with 675 additions and 562 deletions

View File

@ -85,3 +85,6 @@ export function filterObject(
Object.entries(obj).filter(([key]) => filter.includes(key)),
);
}
export const GeneratorType = (function*(){yield undefined;}).constructor;
export const GeneratorIteratorType = (function*(){yield undefined;}).prototype.constructor;