Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 184 Bytes

is-set.md

File metadata and controls

15 lines (12 loc) · 184 Bytes

isSet

/*
isSet(val: unknown): boolean
*/

/**
 * Checks that a value is a Set instance
 * Uses "val instanceof Set" comparison
 */

// Examples
isSet(new Set());// true