UNPKG

tripledoc

Version:

Library to read, create and update documents on a Solid Pod

10 lines (7 loc) 217 B
#!/usr/bin/env node 'use strict'; const {spawn} = require('child_process'); const jpegtran = require('.'); const input = process.argv.slice(2); spawn(jpegtran, input, {stdio: 'inherit'}) .on('exit', process.exit);