jsfuck/README.md

16 lines
398 B
Markdown
Raw Permalink Normal View History

2022-07-21 02:27:23 -05:00
# A JS -> JSFuck transpiler
2022-07-21 02:18:12 -05:00
2022-07-21 02:27:23 -05:00
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
```