You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-09 00:22:08 +03:00
18 lines
271 B
JavaScript
18 lines
271 B
JavaScript
'use strict'
|
|
|
|
var index
|
|
function lazyIndex () {
|
|
return index || require('../')
|
|
}
|
|
|
|
/**
|
|
* @description Print a debug statement if in debug mode
|
|
*/
|
|
function debug () {
|
|
if (lazyIndex().debugMode) {
|
|
console.error.apply(null, arguments)
|
|
}
|
|
}
|
|
|
|
module.exports = debug
|