summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/npmlog/node_modules/gauge/node_modules/supports-color/cli.js
blob: 0617971e6fdbefb8ab6e7c0604dca1e1cd016852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env node
'use strict';
var pkg = require('./package.json');
var supportsColor = require('./');
var input = process.argv[2];

function help() {
	console.log([
		pkg.description,
		'',
		'Usage',
		'  $ supports-color',
		'',
		'Exits with code 0 if color is supported and 1 if not'
	].join('\n'));
}

if (!input || process.argv.indexOf('--help') !== -1) {
	help();
	return;
}

if (process.argv.indexOf('--version') !== -1) {
	console.log(pkg.version);
	return;
}

process.exit(supportsColor ? 0 : 1);