1 | ;
|
2 |
|
3 | var chalk = require('chalk');
|
4 |
|
5 | function debug() {
|
6 | console.log(chalk.green('[npm-check] debug'));
|
7 | console.log.apply(console, arguments);
|
8 | console.log('' + chalk.green('==============================='));
|
9 | }
|
10 |
|
11 | module.exports = debug; |
\ | No newline at end of file |