Files
PrestaShop/admin-dev/themes/default/components/requirejs/tests/funcThree.js
2013-07-18 18:51:24 +02: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;
}
);