Skip to content

Commit

Permalink
fix: use default-exported function due to module resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
shine1594 committed Dec 8, 2021
1 parent 39e18b4 commit 8941828
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/omitBy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import {
import toArray from "./toArray";
import reject from "./Lazy/reject";
import toAsync from "./Lazy/toAsync";
import map from "./Lazy/map";
import zip from "./Lazy/zip";
import pipe from "./pipe";
import { map, zip } from "./Lazy";

/**
*
Expand Down
3 changes: 2 additions & 1 deletion src/pickBy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import {
import toArray from "./toArray";
import filter from "./Lazy/filter";
import toAsync from "./Lazy/toAsync";
import map from "./Lazy/map";
import zip from "./Lazy/zip";
import pipe from "./pipe";
import { map, zip } from "./Lazy";

/**
*
Expand Down

0 comments on commit 8941828

Please sign in to comment.