debug.js 171 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 'use strict'; var index = require('../'); function debug () { if (index.debug_mode) { console.error.apply(null, arguments); } } module.exports = debug;