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.140.201.179
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 /
vue-loader /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
loaders
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
style-compiler
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
template-compiler
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
utils
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.DS_Store
6
KB
-rw-r--r--
1985-10-26 08:15
component-normalizer.js
2.83
KB
-rw-r--r--
1985-10-26 08:15
loader.js
21.51
KB
-rw-r--r--
1985-10-26 08:15
parser.js
1.51
KB
-rw-r--r--
1985-10-26 08:15
selector.js
917
B
-rw-r--r--
1985-10-26 08:15
Save
Rename
// this is a utility loader that takes a *.vue file, parses it and returns // the requested language block, e.g. the content inside <template>, for // further processing. const path = require('path') const parse = require('./parser') const loaderUtils = require('loader-utils') module.exports = function (content) { this.cacheable() const query = loaderUtils.getOptions(this) || {} const context = (this._compiler && this._compiler.context) || this.options.context || process.cwd() let filename = path.basename(this.resourcePath) filename = filename.substring(0, filename.lastIndexOf(path.extname(filename))) + '.vue' const sourceRoot = path.dirname(path.relative(context, this.resourcePath)) const parts = parse(content, filename, this.sourceMap, sourceRoot) let part = parts[query.type] if (Array.isArray(part)) { part = part[query.index] } this.callback(null, part.content, part.map) }