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