diff --git a/src/dev-app/system-rxjs-operators.js b/src/dev-app/system-rxjs-operators.js index 193ccde6bc2d..cdfa24c27f78 100644 --- a/src/dev-app/system-rxjs-operators.js +++ b/src/dev-app/system-rxjs-operators.js @@ -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); });