aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/systemjs/test/tests/register-default-extension.js
blob: 0ab2b012a4e9cfbc3d6dd7ae9da498a41f22c334 (plain)
1
2
3
4
5
6
7
8
System.register('custom/file.ext', [], function(_export) {
  return {
    setters: [],
    execute: function() {
      _export('custom', 'ext');
    }
  };
});