1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00
Files
node-redis/lib/util.js
Matt Ranney b907364573 Support for multiple reply parsers including hiredis.
Several parsing bugs fixed in JavaScript.
Some new config options that need to be better documented.
2010-12-06 09:11:16 -08:00

7 lines
169 B
JavaScript

if (process.versions.node.match(/^0.3/)) {
exports.util = require("util");
} else {
// This module is called "sys" in 0.2.x
exports.util = require("sys");
}