UNPKG

@naturalcycles/js-lib

Version:

Standard library for universal (browser + Node.js) javascript

16 lines (15 loc) 274 B
/** * Like Set, but serializes to JSON as an array. * * Fixes the "issue" of stock Set being json-serialized as `{}`. * * @experimental */ export class Set2 extends Set { toArray() { return [...this]; } toJSON() { return [...this]; } }