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 : 18.117.197.188
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 /
gulp-autoprefixer /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
1.55
KB
-rw-rw-r--
2022-08-30 11:49
license
1.09
KB
-rw-rw-r--
2022-08-30 11:49
package.json
962
B
-rw-rw-r--
2022-08-30 11:49
readme.md
1.41
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; const fancyLog = require('fancy-log'); const PluginError = require('plugin-error'); const through = require('through2'); const applySourceMap = require('vinyl-sourcemaps-apply'); const autoprefixer = require('autoprefixer'); const postcss = require('postcss'); module.exports = options => { return through.obj((file, encoding, callback) => { if (file.isNull()) { callback(null, file); return; } if (file.isStream()) { callback(new PluginError('gulp-autoprefixer', 'Streaming not supported')); return; } (async () => { try { const result = await postcss(autoprefixer(options)).process(file.contents.toString(), { map: file.sourceMap ? {annotation: false} : false, from: file.path, to: file.path }); file.contents = Buffer.from(result.css); if (result.map && file.sourceMap) { const map = result.map.toJSON(); map.file = file.relative; map.sources = map.sources.map(() => file.relative); applySourceMap(file, map); } const warnings = result.warnings(); if (warnings.length > 0) { fancyLog('gulp-autoprefixer:', '\n ' + warnings.join('\n ')); } setImmediate(callback, null, file); } catch (error) { const cssError = error.name === 'CssSyntaxError'; if (cssError) { error.message += error.showSourceCode(); } // Prevent stream unhandled exception from being suppressed by Promise setImmediate(callback, new PluginError('gulp-autoprefixer', error, { fileName: file.path, showStack: !cssError })); } })(); }); };