web-apps/vendor/requirejs/tests/nestedDefine/four.js

8 lines
152 B
JavaScript
Raw Normal View History

2016-03-11 00:48:53 +00:00
define(['two', 'three'], function (two, three) {
return {
name: 'four',
twoName: two.name,
threeName: three.name
};
});