urltomarkdown/node_modules/inherits/inherits.js

10 lines
250 B
JavaScript
Raw Normal View History

2022-01-08 17:05:05 +00:00
try {
var util = require('util');
2022-01-08 17:17:05 +00:00
/* istanbul ignore next */
2022-01-08 17:05:05 +00:00
if (typeof util.inherits !== 'function') throw '';
module.exports = util.inherits;
} catch (e) {
2022-01-08 17:17:05 +00:00
/* istanbul ignore next */
2022-01-08 17:05:05 +00:00
module.exports = require('./inherits_browser.js');
}