6 lines
192 B
JavaScript
6 lines
192 B
JavaScript
|
import { exhaustMap } from './exhaustMap';
|
||
|
import { identity } from '../util/identity';
|
||
|
export function exhaustAll() {
|
||
|
return exhaustMap(identity);
|
||
|
}
|
||
|
//# sourceMappingURL=exhaustAll.js.map
|