Skip to content

Commit

Permalink
What's wrong with you, Lodash?
Browse files Browse the repository at this point in the history
  • Loading branch information
kossnocorp committed Jan 20, 2024
1 parent 3707906 commit 3e4af15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fp/_lib/convertToFP/test.ts
Expand Up @@ -3,7 +3,8 @@
import assert from "assert";
import { pipe } from "fp-ts/function";
import { flow as jsFnsFlow } from "js-fns";
// @ts-expect-error - Lodash types are tripping ("Module '"lodash"' has no exported member 'flow'.ts(2305)")
// eslint-disable-next-line @typescript-eslint/ban-ts-comment -- Lodash types trip in different environemnts, so we can't put ts-expect-error
// @ts-ignore - Lodash types are tripping ("Module '"lodash"' has no exported member 'flow'.ts(2305)")
import { flow as lodashFlow } from "lodash";
import { describe, it } from "vitest";
import { addDays, addHours, isEqual } from "../../index.js";
Expand Down

0 comments on commit 3e4af15

Please sign in to comment.