| Index: node_modules/vulcanize/node_modules/update-notifier/node_modules/string-length/node_modules/strip-ansi/cli.js
 | 
| diff --git a/node_modules/vulcanize/node_modules/update-notifier/node_modules/string-length/node_modules/strip-ansi/cli.js b/node_modules/vulcanize/node_modules/update-notifier/node_modules/string-length/node_modules/strip-ansi/cli.js
 | 
| new file mode 100755
 | 
| index 0000000000000000000000000000000000000000..5b9546aabf8a2ecf266dc0e7476ed1133c222a7b
 | 
| --- /dev/null
 | 
| +++ b/node_modules/vulcanize/node_modules/update-notifier/node_modules/string-length/node_modules/strip-ansi/cli.js
 | 
| @@ -0,0 +1,47 @@
 | 
| +#!/usr/bin/env node
 | 
| +'use strict';
 | 
| +var fs = require('fs');
 | 
| +var pkg = require('./package.json');
 | 
| +var stripAnsi = require('./');
 | 
| +var argv = process.argv.slice(2);
 | 
| +var input = argv[0];
 | 
| +
 | 
| +function help() {
 | 
| +	console.log([
 | 
| +		'',
 | 
| +		'  ' + pkg.description,
 | 
| +		'',
 | 
| +		'  Usage',
 | 
| +		'    strip-ansi <input-file> > <output-file>',
 | 
| +		'    cat <input-file> | strip-ansi > <output-file>',
 | 
| +		'',
 | 
| +		'  Example',
 | 
| +		'    strip-ansi unicorn.txt > unicorn-stripped.txt'
 | 
| +	].join('\n'));
 | 
| +}
 | 
| +
 | 
| +function init(data) {
 | 
| +	process.stdout.write(stripAnsi(data));
 | 
| +}
 | 
| +
 | 
| +if (argv.indexOf('--help') !== -1) {
 | 
| +	help();
 | 
| +	return;
 | 
| +}
 | 
| +
 | 
| +if (argv.indexOf('--version') !== -1) {
 | 
| +	console.log(pkg.version);
 | 
| +	return;
 | 
| +}
 | 
| +
 | 
| +if (process.stdin.isTTY) {
 | 
| +	if (!input) {
 | 
| +		help();
 | 
| +		return;
 | 
| +	}
 | 
| +
 | 
| +	init(fs.readFileSync(input, 'utf8'));
 | 
| +} else {
 | 
| +	process.stdin.setEncoding('utf8');
 | 
| +	process.stdin.on('data', init);
 | 
| +}
 | 
| 
 |