UNPKG

pt.md

Version:

Library for working with https://pt.md

10 lines (7 loc) 261 B
const debug = require('debug'); const path = require('path'); const pkg = require('../../package.json'); module.exports = (filename) => { const namespace = path.basename(filename, '.js'); return (...args) => debug(`${pkg.name}:${namespace}`)(...args); };