UNPKG

can

Version:

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

16 lines (13 loc) 329 B
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; } );