1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-01 16:46:54 +03:00
Files
node-redis/lib/debug.js
2016-04-23 12:54:43 +02:00

12 lines
171 B
JavaScript

'use strict';
var index = require('../');
function debug () {
if (index.debug_mode) {
console.error.apply(null, arguments);
}
}
module.exports = debug;