⚝
One Hat Cyber Team
⚝
Your IP:
192.168.31.6
Server IP:
192.168.1.11
Server:
Linux pams 6.1.0-29-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.123-1 (2025-01-02) x86_64
PHP Version:
8.2.28
Buat File
|
Buat Folder
Upload File
Eksekusi
Dir :
~
/
var
/
www
/
pams
/
public
/
assets
/
libs
/
gulp-rtlcss
/
Edit File: index.js
(function(){ "use strict"; var PluginError = require('plugin-error'), through = require('through2'), rtlcss = require('rtlcss'), configLoader = require('rtlcss/lib/config-loader'), applySourceMap = require('vinyl-sourcemaps-apply'); module.exports = function (config) { return through.obj(function (file, enc, cb) { var result; if (file.isNull()) { this.push(file); return cb(); } if (file.isStream()) { this.emit('error', new PluginError('gulp-rtlcss', 'Streaming not supported')); return cb(); } if (!config) { config = configLoader.load(null, file.cwd); } result = rtlcss.configure(config).process(file.contents.toString(), { prev: file.sourceMap }); file.contents = Buffer.from(result.css); if (file.map) { applySourceMap(file, result.map); } this.push(file); cb(); }); }; })();
Simpan