mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
8 lines
230 B
JavaScript
8 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");
|
||
|
}
|