mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
7 lines
230 B
JavaScript
7 lines
230 B
JavaScript
// Support for very old versions of node. At some point, we should abandon this.
|
|
var minor = process.versions.node.split('.')[1];
|
|
if (minor > 2) {
|
|
exports.util = require("util");
|
|
} else {
|
|
exports.util = require("sys");
|
|
}
|