web-apps/vendor/requirejs/tests/funcThree.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

15 lines
285 B
JavaScript

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