UNPKG

express-scaffold-mvc-generator

Version:
15 lines (11 loc) 290 B
const path = require('path'); const dev_env = function() { let pwds = process.env.PWD.split('/'); return pwds[pwds.length - 1] === process.env.npm_package_name } const test_console = function (...args) { if(dev_env()) { console.log(...args) } } module.exports = test_console