funcTwo.js 329 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 define("funcTwo", ["require", "funcOne"], function(require){ var two = function(name){ this.name = name; this.one = new (require("funcOne"))("ONE"); }; two.prototype.oneName = function(){ return this.one.getName(); }; return two; } );