aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/redis/lib/util.js
blob: fc255ae9536317c6163686f24e662d2019f5f417 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Support for very old versions of node where the module was called "sys".  At some point, we should abandon this.

var util;

try {
    util = require("util");
} catch (err) {
    util = require("sys");
}

module.exports = util;