1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-29 07:55:57 -04:00
notes/node_modules/inherits/inherits.js

8 lines
192 B
JavaScript
Raw Normal View History

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