1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-27 23:45:23 +00:00
notes/node_modules/inherits/inherits.js

8 lines
192 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
try {
var util = require('util');
if (typeof util.inherits !== 'function') throw '';
module.exports = util.inherits;
} catch (e) {
module.exports = require('./inherits_browser.js');
}