a zip code crypto-currency system good for red ONLY

zone-patch-rxjs-fake-async.js 1.3KB

12345678910111213141516171819202122232425262728293031323334
  1. /**
  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. (function (global, factory) {
  9. typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('rxjs/Scheduler'), require('rxjs/scheduler/async'), require('rxjs/scheduler/asap')) :
  10. typeof define === 'function' && define.amd ? define(['rxjs/Scheduler', 'rxjs/scheduler/async', 'rxjs/scheduler/asap'], factory) :
  11. (factory(global.Scheduler,global.async,global.Rx.Scheduler));
  12. }(this, (function (Scheduler,async,asap) { 'use strict';
  13. /**
  14. * @license
  15. * Copyright Google Inc. All Rights Reserved.
  16. *
  17. * Use of this source code is governed by an MIT-style license that can be
  18. * found in the LICENSE file at https://angular.io/license
  19. */
  20. Zone.__load_patch('rxjs.Scheduler.now', function (global, Zone, api) {
  21. api.patchMethod(Scheduler.Scheduler, 'now', function (delegate) { return function (self, args) {
  22. return Date.now.apply(self, args);
  23. }; });
  24. api.patchMethod(async.async, 'now', function (delegate) { return function (self, args) {
  25. return Date.now.apply(self, args);
  26. }; });
  27. api.patchMethod(asap.asap, 'now', function (delegate) { return function (self, args) {
  28. return Date.now.apply(self, args);
  29. }; });
  30. });
  31. })));