mirror of https://github.com/lukechilds/docs.git
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.
18 lines
359 B
18 lines
359 B
'use strict';
|
|
var chalk = require('chalk');
|
|
|
|
var main = {
|
|
info: chalk.blue('ℹ'),
|
|
success: chalk.green('✔'),
|
|
warning: chalk.yellow('⚠'),
|
|
error: chalk.red('✖')
|
|
};
|
|
|
|
var win = {
|
|
info: chalk.blue('i'),
|
|
success: chalk.green('√'),
|
|
warning: chalk.yellow('‼'),
|
|
error: chalk.red('×')
|
|
};
|
|
|
|
module.exports = process.platform === 'win32' ? win : main;
|
|
|