jsfuck/README.md
2022-07-21 00:27:23 -07:00

398 B

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.

> echo 'console.log("abc");' | jsfuck | node
abc
> echo 'console.log("abc");' | jsfuck | wc -c
155328