Opal-Estate-Pro/node_modules/gulp-uglify/lib/log.js

16 lines
318 B
JavaScript
Raw Normal View History

2019-09-13 04:44:33 +02:00
'use strict';
var hasLog = require('has-gulplog');
var each = require('array-each');
var levels = ['debug', 'info', 'warn', 'error'];
each(levels, function(level) {
module.exports[level] = function() {
if (hasLog()) {
var log = require('gulplog');
log[level].apply(log, arguments);
}
};
});