seroval
Version:
Stringify JS values
17 lines (14 loc) • 301 B
text/typescript
/**
* References
* - https://compat-table.github.io/compat-table/es6/
* - MDN
*/
export const enum Feature {
AggregateError = 0x01,
ArrowFunction = 0x02,
ErrorPrototypeStack = 0x04,
ObjectAssign = 0x08,
BigIntTypedArray = 0x10,
AbortSignal = 0x20,
}
export const ALL_ENABLED = 0x2f;