Skip to content

Commit

Permalink
fix: Export fp-functions present in typing: "getFrom" and "getSafeFrom"
Browse files Browse the repository at this point in the history
  • Loading branch information
Iku-turso committed Nov 14, 2022
1 parent 7ef90d1 commit f9e85a4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion packages/fp/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,16 @@ import isPromise from './src/isPromise/isPromise';
import isPrimitive from './src/isPrimitive/isPrimitive';
import pipeline from './src/pipeline/pipeline';
import mapValuesDeep from './src/mapValuesDeep/mapValuesDeep';
import getSafeFrom from './src/getSafeFrom/getSafeFrom';
import getFrom from './src/getFrom/getFrom';

export { awaitAll, flow, isPromise, isPrimitive, pipeline, mapValuesDeep };
export {
awaitAll,
flow,
isPromise,
isPrimitive,
pipeline,
mapValuesDeep,
getFrom,
getSafeFrom,
};

0 comments on commit f9e85a4

Please sign in to comment.