systemjs/test/fixtures/browser/amd-null-module.js
Joel Denning a9a0f3470c
Do not export null as module.exports in amd.js. Resolves #2332. (#2334)
* Do not export null as module.exports in amd.js. Resolves #2332.

* Make named-exports and system-core resilient to _export(null)

* Comment

* Guy's feedback
2021-06-07 12:04:23 -06:00

3 lines
43 B
JavaScript

define([], function () {
return null;
});