加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
fuck.js 927 Bytes
一键复制 编辑 原始数据 按行查看 历史
David Adam Justice 提交于 2014-05-03 16:36 . add repl to executable
#!/usr/bin/env node
var stream = require('stream');
var util = require('util');
var lib = require("./jsfuck.js");
var repl = require('repl');
if(process.argv.length !== 3) {
function Stream() {
stream.Transform.call(this);
}
util.inherits(Stream, stream.Transform);
Stream.prototype._transform = function (chunk, encoding, callback) {
var script = lib.JSFuck.encode(chunk.toString());
var lines = script.split(/\n+/);
for (var i = 0; i < lines.length; i++) {
// ignore empty lines
if (lines[i] !== '') this.push(lines[i] + '\n');
}
callback();
};
var fuckScript = new Stream();
repl.start({
prompt: "FUCK> ",
input: fuckScript,
useColors: true,
output: process.stdout
});
process.stdin.pipe(fuckScript);
} else {
var data = require("fs").readFileSync(process.argv[2], "utf8");
var output = lib.JSFuck.encode(data, false);
console.log(output);
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化