2019-02-13 19:31:29 -05:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2019-02-13 19:31:29 -05:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// rxjs/operators
|
|
|
|
(function(factory) {
|
2020-04-13 19:40:21 -04:00
|
|
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
|
|
var v = factory(require, exports);
|
|
|
|
if (v !== undefined) module.exports = v;
|
|
|
|
} else if (typeof define === 'function' && define.amd) {
|
|
|
|
define('rxjs/operators', ['exports', 'rxjs'], factory);
|
|
|
|
}
|
2019-02-13 19:31:29 -05:00
|
|
|
})(function(exports, rxjs) {
|
2020-04-13 19:40:21 -04:00
|
|
|
'use strict';
|
|
|
|
Object.keys(rxjs.operators).forEach(function(key) {
|
|
|
|
exports[key] = rxjs.operators[key];
|
|
|
|
});
|
|
|
|
Object.defineProperty(exports, '__esModule', {value: true});
|
2019-02-13 19:31:29 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
// rxjs/testing
|
|
|
|
(function(factory) {
|
2020-04-13 19:40:21 -04:00
|
|
|
if (typeof module === 'object' && typeof module.exports === 'object') {
|
|
|
|
var v = factory(require, exports);
|
|
|
|
if (v !== undefined) module.exports = v;
|
|
|
|
} else if (typeof define === 'function' && define.amd) {
|
|
|
|
define('rxjs/testing', ['exports', 'rxjs'], factory);
|
|
|
|
}
|
2019-02-13 19:31:29 -05:00
|
|
|
})(function(exports, rxjs) {
|
2020-04-13 19:40:21 -04:00
|
|
|
'use strict';
|
|
|
|
Object.keys(rxjs.testing).forEach(function(key) {
|
|
|
|
exports[key] = rxjs.testing[key];
|
|
|
|
});
|
|
|
|
Object.defineProperty(exports, '__esModule', {value: true});
|
2019-02-13 19:31:29 -05:00
|
|
|
});
|