UNPKG

can

Version:

MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.

16 lines (13 loc) 332 B
define("funcOne", ["require", "funcTwo"], function(require){ var one = function(name){ this.name = name; }; one.prototype.getName = function(){ var inst = new (require("funcTwo"))("-NESTED"); return this.name + inst.name; }; return one; } );