DocumentServer/OfficeWeb/vendor/requirejs/tests/funcFour.js

15 lines
296 B
JavaScript
Raw Normal View History

2015-04-28 14:59:00 +00:00
define("funcFour",
["require", "funcThree"],
function (require) {
var four = function (arg) {
return "FOUR called with " + arg;
};
four.suffix = function () {
return require("funcThree").suffix();
};
return four;
}
);