UNPKG

@gerhobbelt/mathjax-third-party-extensions

Version:

A list of MathJax extensions provided by third-party contributors

7 lines (6 loc) 349 B
/** PURE_IMPORTS_START _switchMap PURE_IMPORTS_END */ import { switchMap } from './switchMap'; export function switchMapTo(innerObservable, resultSelector) { return resultSelector ? switchMap(function () { return innerObservable; }, resultSelector) : switchMap(function () { return innerObservable; }); } //# sourceMappingURL=switchMapTo.js.map