Skip to content
Snippets Groups Projects
Select Git revision
  • 1180a55b638b86bbe7035838261a92b306a94117
  • master default protected
2 results

inherits.js

Blame
  • Volker Schukai's avatar
    1180a55b
    History
    inherits.js 250 B
    try {
      var util = require('util');
      /* istanbul ignore next */
      if (typeof util.inherits !== 'function') throw '';
      module.exports = util.inherits;
    } catch (e) {
      /* istanbul ignore next */
      module.exports = require('./inherits_browser.js');
    }