mirror of
https://github.com/tiennm99/FBcount.git
synced 2026-05-15 16:58:09 +00:00
7 lines
223 B
JavaScript
7 lines
223 B
JavaScript
function _inheritsLoose(subClass, superClass) {
|
|
subClass.prototype = Object.create(superClass.prototype);
|
|
subClass.prototype.constructor = subClass;
|
|
subClass.__proto__ = superClass;
|
|
}
|
|
|
|
module.exports = _inheritsLoose; |