aboutsummaryrefslogtreecommitdiff
path: root/bin/inflate
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-02-14 08:55:09 -0300
committerEuAndreh <eu@euandre.org>2024-02-14 08:55:09 -0300
commit5a5b78673f6370c54bcba64aed65549fab532f66 (patch)
treea84a898cbabd8e4c7d10f868d9b10c544e4b3a3d /bin/inflate
parentchmod -x share/man/en/man1/numbered.1 (diff)
downloaddotfiles-5a5b78673f6370c54bcba64aed65549fab532f66.tar.gz
dotfiles-5a5b78673f6370c54bcba64aed65549fab532f66.tar.xz
bin/{de,in}flate: Add simple working utilities
Diffstat (limited to 'bin/inflate')
-rwxr-xr-xbin/inflate5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/inflate b/bin/inflate
new file mode 100755
index 0000000..ade1701
--- /dev/null
+++ b/bin/inflate
@@ -0,0 +1,5 @@
+#!/usr/bin/env node
+
+const zlib = require("zlib");
+
+process.stdin.pipe(zlib.createInflate()).pipe(process.stdout);