Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.216.45.133
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
type /
promise /
Delete
Unzip
Name
Size
Permission
Date
Action
ensure.js
267
B
-rw-rw-r--
2022-08-30 11:49
is.js
884
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var isPrototype = require("../prototype/is"); // In theory we could rely on Symbol.toStringTag directly, // still early native implementation (e.g. in FF) predated symbols var objectToString = Object.prototype.toString , objectTaggedString = objectToString.call(Promise.resolve()); module.exports = function (value) { if (!value) return false; // Sanity check (reject objects which do not expose common Promise interface) try { if (typeof value.then !== "function") return false; if (typeof value["catch"] !== "function") return false; } catch (error) { return false; } // Ensure its native Promise object (has [[PromiseState]] slot) // Note: it's not 100% precise as string tag may be overriden // and other objects could be hacked to expose it if (objectToString.call(value) !== objectTaggedString) return false; return !isPrototype(value); };