Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/dev-app/system-rxjs-operators.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
// all rxjs files individually.

if (typeof define === 'function' && define.amd) {
define(['exports', 'rxjs'], (exports, rxjs) => {
// Note that this needs to be in ES5, because we load it
// directly into the browser without transpiling.
define(['exports', 'rxjs'], function(exports, rxjs) {
// Re-export all operators in this AMD module.
Object.assign(exports, rxjs.operators);
});
Expand Down