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 : 3.147.67.34
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
ast-types /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
equiv.js
4.91
KB
-rw-r--r--
2017-01-18 18:19
node-path.js
14.69
KB
-rw-r--r--
2017-01-18 18:19
path-visitor.js
13.01
KB
-rw-r--r--
2017-01-18 18:19
path.js
10.71
KB
-rw-r--r--
2017-01-18 18:19
scope.js
11.28
KB
-rw-r--r--
2017-01-18 18:19
shared.js
1.44
KB
-rw-r--r--
2017-01-18 18:19
types.js
28.29
KB
-rw-r--r--
2017-01-18 18:19
Save
Rename
module.exports = function (fork) { var exports = {}; var types = fork.use(require("../lib/types")); var Type = types.Type; var builtin = types.builtInTypes; var isNumber = builtin.number; // An example of constructing a new type with arbitrary constraints from // an existing type. exports.geq = function (than) { return new Type(function (value) { return isNumber.check(value) && value >= than; }, isNumber + " >= " + than); }; // Default value-returning functions that may optionally be passed as a // third argument to Def.prototype.field. exports.defaults = { // Functions were used because (among other reasons) that's the most // elegant way to allow for the emptyArray one always to give a new // array instance. "null": function () { return null }, "emptyArray": function () { return [] }, "false": function () { return false }, "true": function () { return true }, "undefined": function () {} }; var naiveIsPrimitive = Type.or( builtin.string, builtin.number, builtin.boolean, builtin.null, builtin.undefined ); exports.isPrimitive = new Type(function (value) { if (value === null) return true; var type = typeof value; return !(type === "object" || type === "function"); }, naiveIsPrimitive.toString()); return exports; };