You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-01 16:46:54 +03:00
12 lines
156 B
JavaScript
12 lines
156 B
JavaScript
'use strict';
|
|
|
|
var index = require('../');
|
|
|
|
function debug (msg) {
|
|
if (index.debug_mode) {
|
|
console.error(msg);
|
|
}
|
|
}
|
|
|
|
module.exports = debug;
|