UNPKG

272 BJavaScriptView Raw
1'use strict';
2
3var index = require('../');
4
5function debug () {
6 if (index.debug_mode) {
7 var data = Array.prototype.slice.call(arguments);
8 data.unshift(new Date().toISOString());
9 console.error.apply(null, data);
10 }
11}
12
13module.exports = debug;