emoji-mart-lazyload/src/polyfills/inherits.js

20 lines
596 B
JavaScript
Raw Normal View History

2017-09-17 08:54:22 +00:00
const _Object = Object
module.exports = function inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
}
subClass.prototype = _Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
enumerable: false,
writable: true,
configurable: true
}
});
if (superClass) {
_Object.setPrototypeOf ? _Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
}
2017-09-26 00:11:52 +00:00
};