Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
node-is-set /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
1.34
KB
-rw-r--r--
2023-11-11 22:35
copyright
6.53
KB
-rw-r--r--
2023-11-11 22:35
Save
Rename
# is-set <sup>[![Version Badge][2]][1]</sup> [![dependency status][5]][6] [![dev dependency status][7]][8] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][11]][1] Is this value a JS Set? This module works cross-realm/iframe, and despite ES6 @@toStringTag. ## Example ```js var isSet = require('is-set'); assert(!isSet(function () {})); assert(!isSet(null)); assert(!isSet(function* () { yield 42; return Infinity; }); assert(!isSet(Symbol('foo'))); assert(!isSet(1n)); assert(!isSet(Object(1n))); assert(!isSet(new Map())); assert(!isSet(new WeakSet())); assert(!isSet(new WeakMap())); assert(isSet(new Set())); class MySet extends Set {} assert(isSet(new MySet())); ``` ## Tests Simply clone the repo, `npm install`, and run `npm test` [1]: https://npmjs.org/package/is-set [2]: https://versionbadg.es/inspect-js/is-set.svg [5]: https://david-dm.org/inspect-js/is-set.svg [6]: https://david-dm.org/inspect-js/is-set [7]: https://david-dm.org/inspect-js/is-set/dev-status.svg [8]: https://david-dm.org/inspect-js/is-set#info=devDependencies [11]: https://nodei.co/npm/is-set.png?downloads=true&stars=true [license-image]: https://img.shields.io/npm/l/is-set.svg [license-url]: LICENSE [downloads-image]: https://img.shields.io/npm/dm/is-set.svg [downloads-url]: https://npm-stat.com/charts.html?package=is-set