How to use the config function from rxjs

Find comprehensive JavaScript rxjs.config code examples handpicked from public code repositorys.

41
42
43
44
45
46
47
48
49
50
const { getSubServiceHealthBroker } = require('./lib/healthCheck/subServiceHealth')
const Observables = require('./observables')
const { initializeCache } = Observables.TraceObservable

const setup = async () => {
  Rx.config.onUnhandledError = (err) => {
    console.warn(err)
  }
  Rx.config.useDeprecatedNextContext = true
  await registerEventHandler()
fork icon10
star icon1
watch icon11

+ 27 other calls in file

68
69
70
71
72
73
exports.using = rxjs.using;
exports.zip = rxjs.zip;
exports.scheduled = rxjs.scheduled;
exports.EMPTY = rxjs.EMPTY;
exports.NEVER = rxjs.NEVER;
exports.config = rxjs.config;
fork icon299
star icon0
watch icon1