diff options
| author | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
|---|---|---|
| committer | Florian Dold <florian.dold@gmail.com> | 2019-03-27 21:01:33 +0100 |
| commit | cc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch) | |
| tree | 92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/fancy-log/index.js | |
| parent | 3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff) | |
remove node_modules
Diffstat (limited to 'node_modules/fancy-log/index.js')
| -rw-r--r-- | node_modules/fancy-log/index.js | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/node_modules/fancy-log/index.js b/node_modules/fancy-log/index.js deleted file mode 100644 index c78eb45c8..000000000 --- a/node_modules/fancy-log/index.js +++ /dev/null @@ -1,72 +0,0 @@ -'use strict'; -/* - Initial code from https://github.com/gulpjs/gulp-util/blob/v3.0.6/lib/log.js - */ -var gray = require('ansi-gray'); -var timestamp = require('time-stamp'); -var supportsColor = require('color-support'); - -function hasFlag(flag) { - return (process.argv.indexOf('--' + flag) !== -1); -} - -function addColor(str) { - if (hasFlag('no-color')) { - return str; - } - - if (hasFlag('color')) { - return gray(str); - } - - if (supportsColor()) { - return gray(str); - } - - return str; -} - -function getTimestamp(){ - return '['+addColor(timestamp('HH:mm:ss'))+']'; -} - -function log(){ - var time = getTimestamp(); - process.stdout.write(time + ' '); - console.log.apply(console, arguments); - return this; -} - -function info(){ - var time = getTimestamp(); - process.stdout.write(time + ' '); - console.info.apply(console, arguments); - return this; -} - -function dir(){ - var time = getTimestamp(); - process.stdout.write(time + ' '); - console.dir.apply(console, arguments); - return this; -} - -function warn(){ - var time = getTimestamp(); - process.stderr.write(time + ' '); - console.warn.apply(console, arguments); - return this; -} - -function error(){ - var time = getTimestamp(); - process.stderr.write(time + ' '); - console.error.apply(console, arguments); - return this; -} - -module.exports = log; -module.exports.info = info; -module.exports.dir = dir; -module.exports.warn = warn; -module.exports.error = error; |
