DocumentServer/OfficeWeb/vendor/requirejs/tests/funcFour.js
2015-04-28 17:59:00 +03:00

15 lines
296 B
JavaScript

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