setup-java/node_modules/parse5/lib/utils/mixin.js
Stephen Franceschelli c1a589c5b6 Fix.
2019-07-30 13:41:05 -04:00

19 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');
};