UNPKG

@lsk4/log

Version:

Yet another logger whitch combines the best features of debug, bunyan, logfmt/logrus, morgan/winston

14 lines (12 loc) 280 B
/** * Enables a debug mode by namespaces. This can include modes * separated by a colon and wildcards. * * @param {String} namespaces * @api public */ declare function parseNs(raw?: string): { on: RegExp[]; off: RegExp[]; }; export { parseNs as default, parseNs };