@arrows/dispatch
Version:
Functional dispatch library
22 lines (21 loc) • 508 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const types = {
Array: 'Array',
BigInt: 'BigInt',
Boolean: 'Boolean',
Error: 'Error',
Function: 'Function',
Generator: 'Generator',
GeneratorFunction: 'GeneratorFunction',
Null: 'Null',
Number: 'Number',
Object: 'Object',
Promise: 'Promise',
RegExp: 'RegExp',
String: 'String',
Symbol: 'Symbol',
Undefined: 'Undefined',
};
exports.types = types;
exports.default = types;