blob: a1842cf61af312c749b42923f858df557e9d2f50 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001#!/usr/bin/env node
2'use strict';
3const {spawn} = require('child_process');
4const jpegtran = require('.');
5
6const input = process.argv.slice(2);
7
8spawn(jpegtran, input, {stdio: 'inherit'})
9 .on('exit', process.exit);