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.135.203.93
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 /
laravel-mix /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
builder
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
components
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
tasks
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
webpackPlugins
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
Api.js
1.96
KB
-rw-r--r--
2021-02-04 21:24
Assert.js
1.97
KB
-rw-r--r--
2021-02-04 21:24
Dependencies.js
1.42
KB
-rw-r--r--
2021-02-04 21:24
Dispatcher.js
887
B
-rw-r--r--
2021-02-04 21:24
File.js
5.37
KB
-rw-r--r--
2021-02-04 21:24
FileCollection.js
2.52
KB
-rw-r--r--
2021-02-04 21:24
Manifest.js
2.95
KB
-rw-r--r--
2021-02-04 21:24
Mix.js
2.41
KB
-rw-r--r--
2021-02-04 21:24
Paths.js
920
B
-rw-r--r--
2021-02-04 21:24
StandaloneSass.js
3.77
KB
-rw-r--r--
2021-02-04 21:24
config.js
6.84
KB
-rw-r--r--
2021-02-04 21:24
helpers.js
1.04
KB
-rw-r--r--
2021-02-04 21:24
index.js
1.83
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
let assert = require('assert'); let Dependencies = require('./Dependencies'); let argv = require('yargs').argv; class Assert { /** * Assert that the call the mix.js() is valid. * * @param {*} entry * @param {*} output */ static js(entry, output) { assert( typeof entry === 'string' || Array.isArray(entry), 'mix.js() is missing required parameter 1: entry' ); assert( typeof output === 'string', 'mix.js() is missing required parameter 2: output' ); } /** * Assert that the calls to mix.sass() and mix.less() are valid. * * @param {string} type * @param {string} src * @param {string} output */ static preprocessor(type, src, output) { assert( typeof src === 'string', `mix.${type}() is missing required parameter 1: src` ); assert( typeof output === 'string', `mix.${type}() is missing required parameter 2: output` ); } /** * Assert that calls to mix.combine() are valid. * * @param {string} src * @param {File} output */ static combine(src, output) { assert( output.isFile(), 'mix.combine() requires a full output file path as the second argument.' ); } /** * Assert that the given file exists. * * @param {string} file */ static exists(file) { assert( File.exists(file), `Whoops, you are trying to compile ${file}, but that file does not exist.` ); } /** * Assert that the necessary dependencies are available. * * @param {Array} list * @param {Boolean} abortOnComplete */ static dependencies(dependencies, abortOnComplete = false) { if (argv['$0'].includes('ava')) return; new Dependencies(dependencies).install(abortOnComplete); } } module.exports = Assert;