modified configuration file for web

Signed-off-by: ajeetraina <ajeetraina@gmail.com>
This commit is contained in:
ajeetraina
2022-03-13 13:09:07 +05:30
parent ddd852fe22
commit 71b622220f
369 changed files with 64621 additions and 1 deletions

13
nginx-nodejs-redis/web/node_modules/redis/lib/debug.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict';
var index = require('../');
function debug () {
if (index.debug_mode) {
var data = Array.prototype.slice.call(arguments);
data.unshift(new Date().toISOString());
console.error.apply(null, data);
}
}
module.exports = debug;