web-apps/vendor/requirejs/tests/funcFour.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -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;
}
);