https://github.com/angular/angular
Raw File
Tip revision: 4b46819ed10cd2b924d126701c5d4b1c63bc62c5 authored by Pawel Kozlowski on 16 August 2023, 17:15:27 UTC
release: cut the v16.2.1 release
Tip revision: 4b46819
rxjs_shims.js
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * 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) {
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);
}
})(function(exports, rxjs) {
'use strict';
Object.keys(rxjs.operators).forEach(function(key) {
  exports[key] = rxjs.operators[key];
});
Object.defineProperty(exports, '__esModule', {value: true});
});

// rxjs/testing
(function(factory) {
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);
}
})(function(exports, rxjs) {
'use strict';
Object.keys(rxjs.testing).forEach(function(key) {
  exports[key] = rxjs.testing[key];
});
Object.defineProperty(exports, '__esModule', {value: true});
});
back to top