summaryrefslogtreecommitdiff
path: root/node_modules/inherits/inherits_browser.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 22:11:20 +0100
committerMarvin Borner2018-11-07 22:11:20 +0100
commit641ed66837dd4bd45c977978609fb38cbeac9319 (patch)
treeeec4e367844a7059d29aa2aae086e6c064c03380 /node_modules/inherits/inherits_browser.js
parent954583f3d56fbfb60321725f13ad092e536e3737 (diff)
Didn't remove node_modules correctly..
Diffstat (limited to 'node_modules/inherits/inherits_browser.js')
-rw-r--r--node_modules/inherits/inherits_browser.js23
1 files changed, 0 insertions, 23 deletions
diff --git a/node_modules/inherits/inherits_browser.js b/node_modules/inherits/inherits_browser.js
deleted file mode 100644
index c1e78a7..0000000
--- a/node_modules/inherits/inherits_browser.js
+++ /dev/null
@@ -1,23 +0,0 @@
-if (typeof Object.create === 'function') {
- // implementation from standard node.js 'util' module
- module.exports = function inherits(ctor, superCtor) {
- ctor.super_ = superCtor
- ctor.prototype = Object.create(superCtor.prototype, {
- constructor: {
- value: ctor,
- enumerable: false,
- writable: true,
- configurable: true
- }
- });
- };
-} else {
- // old school shim for old browsers
- module.exports = function inherits(ctor, superCtor) {
- ctor.super_ = superCtor
- var TempCtor = function () {}
- TempCtor.prototype = superCtor.prototype
- ctor.prototype = new TempCtor()
- ctor.prototype.constructor = ctor
- }
-}