exhaustAll.js 192 B

123456
  1. import { exhaustMap } from './exhaustMap';
  2. import { identity } from '../util/identity';
  3. export function exhaustAll() {
  4. return exhaustMap(identity);
  5. }
  6. //# sourceMappingURL=exhaustAll.js.map