web-apps/vendor/requirejs/tests/uniques/two.js

9 lines
200 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
define("two", ["one", "three", "one"], function (one, three, one2) {
return {
name: "two",
oneName: one.name,
oneName2: one2.name,
threeName: three.name
};
});