DocumentServer/OfficeWeb/vendor/requirejs/tests/funcThree.js
2015-04-28 17:59:00 +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;
}
);