mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-17 05:04:59 +02:00
12 lines
171 B
JavaScript
12 lines
171 B
JavaScript
'use strict';
|
|
|
|
var index = require('../');
|
|
|
|
function debug () {
|
|
if (index.debug_mode) {
|
|
console.error.apply(null, arguments);
|
|
}
|
|
}
|
|
|
|
module.exports = debug;
|