UNPKG

sebastian

Version:

A flow-control library aimed at encouraging organized, testable code.

15 lines (12 loc) 296 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; } );