mirror of
https://code.forgejo.org/actions/setup-python
synced 2025-06-13 14:34:11 +02:00
Initial pass
This commit is contained in:
commit
39c08a0eaa
7242 changed files with 1886006 additions and 0 deletions
18
node_modules/parse5/lib/utils/mixin.js
generated
vendored
Normal file
18
node_modules/parse5/lib/utils/mixin.js
generated
vendored
Normal file
|
@ -0,0 +1,18 @@
|
|||
'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');
|
||||
};
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue