Initial
This commit is contained in:
19
resources/app/common/utils/module.mjs
Normal file
19
resources/app/common/utils/module.mjs
Normal file
@@ -0,0 +1,19 @@
|
||||
export * from "./geometry.mjs";
|
||||
export * from "./helpers.mjs";
|
||||
export * from "./http.mjs";
|
||||
export * from "./logging.mjs";
|
||||
export {default as Collection} from "./collection.mjs";
|
||||
export {default as EventEmitterMixin} from "./event-emitter.mjs";
|
||||
export {default as IterableWeakSet} from "./iterable-weak-set.mjs";
|
||||
export {default as IterableWeakMap} from "./iterable-weak-map.mjs";
|
||||
export {default as Color} from "./color.mjs";
|
||||
export {default as Semaphore} from "./semaphore.mjs";
|
||||
export {default as BitMask} from "./bitmask.mjs";
|
||||
export {default as WordTree} from "./word-tree.mjs";
|
||||
export {default as StringTree} from "./string-tree.mjs";
|
||||
|
||||
/**
|
||||
* The constructor of an async function.
|
||||
* @type {typeof AsyncFunction}
|
||||
*/
|
||||
export const AsyncFunction = (async function() {}).constructor;
|
||||
Reference in New Issue
Block a user