PHP WebShell

Текущая директория: /opt/BitGoJS/node_modules/browserify/test/tr_args

Просмотр файла: tr.js

var through = require('through2');

module.exports = function (file, opts) {
    var data = '';
    return through(write, end);
    
    function write (buf, enc, next) { data += buf; next() }
    function end () {
        this.push(data.replace(/X/g, opts.x));
        this.push(null);
    }
};

Выполнить команду


Для локальной разработки. Не используйте в интернете!