UNPKG

can

Version:

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

15 lines (12 loc) 279 B
define("funcThree", ["funcFour"], function(four){ var three = function(arg){ return arg + "-" + require("funcFour").suffix(); }; three.suffix = function(){ return "THREE_SUFFIX"; }; return three; } );