UNPKG

361 BJavaScriptView Raw
1export const DEFAULT_EPS = 1e-6;
2/**
3 * Internal use only. **Do NOT use in user land code!**
4 *
5 * @internal
6 */
7export const SEMAPHORE = Symbol();
8/**
9 * No-effect placeholder function.
10 */
11export const NO_OP = () => { };
12/**
13 * Catch-all event ID
14 */
15export const EVENT_ALL = "*";
16export const EVENT_ENABLE = "enable";
17export const EVENT_DISABLE = "disable";