c.js 307 B

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