別のJSからクラスを継承し、Parent関数にいくつかのプロトタイプ関数を追加しました。子の新しいインスタンスを作成するときに、親のコンストラクターを呼び出したいと思います。方法を提案してください。
親
function Parent() { .. }
Parent.prototype.fn1 = function(){};
exports.create = function() {
return (new Parent());
};
子
var parent = require('parent');
Child.prototype = frisby.create();
function Child() { .. }
Child.prototype.fn2 = function(){};
exports.create = function() {
return (new Child());
};