blob: 3b94763a76eef0599dba6d0a7044b89c5a9d2033 (
plain)
1
2
3
4
5
6
7
|
try {
var util = require('util');
if (typeof util.inherits !== 'function') throw '';
module.exports = util.inherits;
} catch (e) {
module.exports = require('./inherits_browser.js');
}
|