# A JS -> JSFuck transpiler JS goes in stdin. JSFuck comes out stdout. Thats it. Works on node. Works in the browser. Works everywhere. Each char of input produces around 500 chars of output, plus ~146000 chars of output regardless of input. *Please* do not use this in production. ```sh > echo 'console.log("abc");' | jsfuck | node abc > echo 'console.log("abc");' | jsfuck | wc -c 155328 ```