mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
11 lines
171 B
JavaScript
11 lines
171 B
JavaScript
'use strict';
|
|
|
|
var index = require('../');
|
|
|
|
function debug () {
|
|
if (index.debug_mode) {
|
|
console.error.apply(null, arguments);
|
|
}
|
|
}
|
|
|
|
module.exports = debug;
|