2014-04-01 00:47:41 -06:00

12 lines
231 B
JavaScript

// 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;