summaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/amd-circular2.js
blob: df9254d2446083f57f73254cce5ac8983a51c051 (plain)
1
2
3
4
5
6
define(function(require, exports) {
  var circular1 = require('./amd-circular1.js');
  exports.fn = function() {
    return circular1.val;
  }
});