Welcome to mirror list, hosted at ThFree Co, Russian Federation.

output.js « utils « lib « npm « deps - github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3dd66cbdd2ab8d2aa98340f350e4fa69c8ccebe8 (plain)
1
2
3
4
5
6
7
8
'use strict'
var log = require('npmlog')
// output to stdout in a progress bar compatible way
module.exports = function () {
  log.clearProgress()
  console.log.apply(console, arguments)
  log.showProgress()
}