install-nix-action/node_modules/parse5/lib/utils/mixin.js
Domen Kožar 08403cd828
v5
2019-11-13 17:14:48 +01:00

18 lines
506 B
JavaScript

'use strict';
var Mixin = module.exports = function (host) {
var originalMethods = {},
overriddenMethods = this._getOverriddenMethods(this, originalMethods);
Object.keys(overriddenMethods).forEach(function (key) {
if (typeof overriddenMethods[key] === 'function') {
originalMethods[key] = host[key];
host[key] = overriddenMethods[key];
}
});
};
Mixin.prototype._getOverriddenMethods = function () {
throw new Error('Not implemented');
};