You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 lines
573 B
1 lines
573 B
{"version":3,"file":"switchAll.js","sourceRoot":"","sources":["../../src/operators/switchAll.ts"],"names":[],"mappings":";AAEA,0BAA0B,aAAa,CAAC,CAAA;AACxC,yBAAyB,kBAAkB,CAAC,CAAA;AAE5C;IACE,MAAM,CAAC,qBAAS,CAAC,mBAAQ,CAAC,CAAC;AAC7B,CAAC;AAFe,iBAAS,YAExB,CAAA","sourcesContent":["import { OperatorFunction } from '../interfaces';\nimport { Observable } from '../Observable';\nimport { switchMap } from './switchMap';\nimport { identity } from '../util/identity';\n\nexport function switchAll<T>(): OperatorFunction<Observable<T>, T> {\n return switchMap(identity);\n}\n"]} |