UNPKG

can

Version:

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

15 lines (12 loc) 290 B
define("funcFour", ["require", "funcThree"], function(require){ var four = function(arg){ return "FOUR called with " + arg; }; four.suffix = function(){ return require("funcThree").suffix(); }; return four; } );