UNPKG

tiinvo

Version:

A library of types and utilities for your TypeScript and JavaScript projects

15 lines (14 loc) 352 B
//#region catchables /** * Is the symbol used to express the presence of an async catchable function * * @since 4.0.0 */ export const catchableAsync = Symbol("catchable.async"); /** * Is the symbol used to express the presence of a sync catchable function * * @since 4.0.0 */ export const catchableSync = Symbol("catchable.sync"); //#endregion