mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
* Add and run end-of-file-fixer * Add and run trailing-whitespace * Add and run check-yaml * Add and run check-json * Add and run pretty-format-yaml * Fix comment indentation
15 lines
317 B
JavaScript
15 lines
317 B
JavaScript
(function() {
|
|
if (typeof Mario === 'undefined') {
|
|
window.Mario = {};
|
|
}
|
|
|
|
var Util = Mario.Util = {};
|
|
|
|
Util.inherits = function(subclass, superclass) {
|
|
function Surrogate() {};
|
|
|
|
Surrogate.prototype = superclass.prototype;
|
|
subclass.prototype = new Surrogate();
|
|
}
|
|
})()
|