kopia lustrzana https://github.com/c9/core
8 wiersze
185 B
JavaScript
8 wiersze
185 B
JavaScript
![]() |
define(function(require, exports, module) {
|
||
|
|
||
|
exports.inherits = function(Child, Parent) {
|
||
|
Child.prototype = Object.create(Parent.prototype, { constructor: { value: Child }});
|
||
|
};
|
||
|
|
||
|
});
|