c.js 215 B

12345678910
  1. define(function (require, exports, module) {
  2. //A fake out, modify the exports, but still prefer the
  3. //return value as the module value.
  4. exports.name = 'badc';
  5. return {
  6. name: 'c'
  7. };
  8. });