UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

25 lines (21 loc) • 578 B
var create = require('../diagnostics'); /** * Create a new diagnostics logger. * * @param {String} namespace The namespace it should enable. * @param {Object} options Additional options. * @returns {Function} The logger. * @public */ var diagnostics = create(function prod(namespace, options) { options = options || {}; options.namespace = namespace; options.prod = true; options.dev = false; if (!(options.force || prod.force)) return prod.nope(options); return prod.yep(options); }); // // Expose the diagnostics logger. // module.exports = diagnostics;