blob: 2c80665dd6c2dd6e34b396afc15248fd6764913e [file] [log] [blame]
Sean Condona3ad7792020-01-04 19:26:34 +00001/**
2 * @license
3 * Copyright Google Inc. All Rights Reserved.
4 *
5 * Use of this source code is governed by an MIT-style license that can be
6 * found in the LICENSE file at https://angular.io/license
7 */
8
9/**
10 * @fileoverview these provide named UMD modules so that we can bundle
11 * the application along with rxjs using the concatjs bundler.
12 */
13
14// rxjs/operators
15(function(factory) {
16 if (typeof module === 'object' && typeof module.exports === 'object') {
17 var v = factory(require, exports);
18 if (v !== undefined) module.exports = v;
19 } else if (typeof define === 'function' && define.amd) {
20 define('rxjs/operators', ['exports', 'rxjs'], factory);
21 }
22})(function(exports, rxjs) {
23 'use strict';
24 Object.keys(rxjs.operators).forEach(function(key) {
25 exports[key] = rxjs.operators[key];
26 });
27 Object.defineProperty(exports, '__esModule', {value: true});
28});
29
30// rxjs/testing
31(function(factory) {
32 if (typeof module === 'object' && typeof module.exports === 'object') {
33 var v = factory(require, exports);
34 if (v !== undefined) module.exports = v;
35 } else if (typeof define === 'function' && define.amd) {
36 define('rxjs/testing', ['exports', 'rxjs'], factory);
37 }
38})(function(exports, rxjs) {
39 'use strict';
40 Object.keys(rxjs.testing).forEach(function(key) {
41 exports[key] = rxjs.testing[key];
42 });
43 Object.defineProperty(exports, '__esModule', {value: true});
44});