You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cli.js 215B

123456789
  1. #!/usr/bin/env node
  2. 'use strict';
  3. const {spawn} = require('child_process');
  4. const mozjpeg = require('.');
  5. const input = process.argv.slice(2);
  6. spawn(mozjpeg, input, {stdio: 'inherit'})
  7. .on('exit', process.exit);