biofriction-wp-theme/node_modules/debug-fabulous/index.js

12 lines
239 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02:00
var wrapLazyEval = require('./src/lazy-eval'),
wrapLazy = require('./src/lazy-debug');
module.exports = function (debug) {
debug = debug ? debug : require('debug')
debug = wrapLazyEval(debug);
wrapLazy(debug);
return debug;
}