// export { ApplyFns } from './ApplyFns'; // export { bind } from './bind'; // export { Compose } from './Compose'; // export { Curried } from './Curried'; // export { curry } from './curry'; export { FromPairsFn } from './FromPairsFn'; // export { MapFn } from './MapFn'; export { MergeAllFn } from './MergeAllFn'; export { PathFn } from './PathFn'; export { PathOrFn } from './PathOrFn'; // export { Pipe } from './Pipe'; export { ZipObjectFn } from './ZipObjectFn'; /** * Ramda functions redone with iteration. * @see https://github.com/Microsoft/TypeScript/issues/12512 * @preferred */ // future: // `reduce`: needs `ReturnType` (#6606) for its dynamic reducer functions. see #12512 for Ramda functions that need this.