blob: a1842cf61af312c749b42923f858df557e9d2f50 [file] [log] [blame]
#!/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);