2017-12-15 18:56:14 +00:00
|
|
|
try {
|
|
|
|
var util = require('util');
|
2021-05-08 12:39:21 +00:00
|
|
|
/* istanbul ignore next */
|
2017-12-15 18:56:14 +00:00
|
|
|
if (typeof util.inherits !== 'function') throw '';
|
|
|
|
module.exports = util.inherits;
|
|
|
|
} catch (e) {
|
2021-05-08 12:39:21 +00:00
|
|
|
/* istanbul ignore next */
|
2017-12-15 18:56:14 +00:00
|
|
|
module.exports = require('./inherits_browser.js');
|
|
|
|
}
|