-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
18 lines (17 loc) · 938 Bytes
/
index.ts
File metadata and controls
18 lines (17 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export {default as ifTruthy} from './src/util/ifTruthy';
export {default as ifFalsy} from './src/util/ifFalsy';
export {default as ifElse} from './src/util/ifElse';
export {default as log} from './src/util/log';
export {default as catchError} from './src/util/catchError';
export {default as catchErrorAsync} from './src/util/catchErrorAsync';
export {default as ifError} from './src/util/ifError';
export {default as combine} from './src/util/combine';
export {default as pluck} from './src/util/pluck';
export {default as invoke} from './src/util/invoke';
export {default as filterWith} from './src/util/filterWith';
export {default as mapWith} from './src/util/mapWith';
export {default as everyWith} from './src/util/everyWith';
export {default as firstTruthy} from './src/util/firstTruthy';
export {default as pipeAsync} from './src/pipeAsync';
export {default as pipe} from './src/piperize';
export {default} from './src/piperize';