14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
'use strict';
|
|
|
|
var index = require('../');
|
|
|
|
function debug () {
|
|
if (index.debug_mode) {
|
|
var data = Array.prototype.slice.call(arguments);
|
|
data.unshift(new Date().toISOString());
|
|
console.error.apply(null, data);
|
|
}
|
|
}
|
|
|
|
module.exports = debug;
|