mirror of
https://github.com/sstent/node.git
synced 2026-01-26 15:12:37 +00:00
7 lines
124 B
JavaScript
7 lines
124 B
JavaScript
// Backwards compatibility ...
|
|
try {
|
|
module.exports = require('util');
|
|
} catch (e) {
|
|
module.exports = require('sys');
|
|
}
|