extend.js
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
var _lodash = require('lodash');
// Uses a hash of prototype properties and class properties to be extended.
module.exports = function extend(protoProps, staticProps) {
var Parent = this;
// The constructor function for the new subclass is either defined by you
// (the "constructor" property in your `extend` definition), or defaulted
// by us to simply call the parent's constructor.
var Child = protoProps && protoProps.hasOwnProperty('constructor') ? protoProps.constructor : function () {
return Parent.apply(this, arguments);
};
(0, _lodash.assign)(Child, Parent, staticProps);
// Set the prototype chain to inherit from `Parent`.
Child.prototype = Object.create(Parent.prototype, {
constructor: {
value: Child,
enumerable: false,
writable: true,
configurable: true
}
});
if (protoProps) {
(0, _lodash.assign)(Child.prototype, protoProps);
}
// Give child access to the parent prototype as part of "super"
Child.__super__ = Parent.prototype;
// If there is an "extended" function set on the parent,
// call it with the extended child object.
if ((0, _lodash.isFunction)(Parent.extended)) Parent.extended(Child);
return Child;
};