{"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(): OperatorFunction, T> {\n return switchMap(identity);\n}\n"]}