Files
enviPy-bayer/static/js/ketcher2/node_modules/gulp-uglify/lib/log.js
2025-06-23 20:13:54 +02:00

19 lines
345 B
JavaScript

'use strict';
var hasLog = require('has-gulplog');
var each = require('lodash/fp/forEach');
var levels = ['debug', 'info', 'warn', 'error'];
each(
function(level) {
module.exports[level] = function() {
if (hasLog()) {
var log = require('gulplog');
log[level].apply(log, arguments);
}
};
},
levels
);