a.js 122 B

1234567
  1. define(['./b', './sub/nested/d'], function (b, d) {
  2. return {
  3. name: 'a',
  4. b: b,
  5. d: d
  6. };
  7. });