mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
8 lines
185 B
JavaScript
8 lines
185 B
JavaScript
define(function(require, exports, module) {
|
|
|
|
exports.inherits = function(Child, Parent) {
|
|
Child.prototype = Object.create(Parent.prototype, { constructor: { value: Child }});
|
|
};
|
|
|
|
});
|