@thi.ng/api
Version:
Common, generic types, interfaces & mixins
18 lines (17 loc) • 361 B
JavaScript
export const DEFAULT_EPS = 1e-6;
/**
* Internal use only. **Do NOT use in user land code!**
*
* @internal
*/
export const SEMAPHORE = Symbol();
/**
* No-effect placeholder function.
*/
export const NO_OP = () => { };
/**
* Catch-all event ID
*/
export const EVENT_ALL = "*";
export const EVENT_ENABLE = "enable";
export const EVENT_DISABLE = "disable";