Skip to content

Commit

Permalink
refactor(csv): update imports (transducers)
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Sep 20, 2021
1 parent 4705acc commit 4bdecc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions packages/csv/src/format.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ import { isIterable } from "@thi.ng/checks/is-iterable";
import type { Stringer } from "@thi.ng/strings";
import { wrap } from "@thi.ng/strings/wrap";
import type { Reducer, Transducer } from "@thi.ng/transducers";
import { compR } from "@thi.ng/transducers/func/compr";
import { compR } from "@thi.ng/transducers/compr";
import { iterator } from "@thi.ng/transducers/iterator";
import { isReduced } from "@thi.ng/transducers/reduced";
import { str } from "@thi.ng/transducers/rfn/str";
import { str } from "@thi.ng/transducers/str";
import { transduce } from "@thi.ng/transducers/transduce";
import type { CSVRecord, CSVRow, CSVFormatOpts } from "./api";
import type { CSVFormatOpts, CSVRecord, CSVRow } from "./api";

export function formatCSV(
opts?: Partial<CSVFormatOpts>
Expand Down
2 changes: 1 addition & 1 deletion packages/csv/src/parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { isIterable } from "@thi.ng/checks/is-iterable";
import { ESCAPES } from "@thi.ng/strings/escape";
import { split } from "@thi.ng/strings/split";
import type { Reducer, Transducer } from "@thi.ng/transducers";
import { compR } from "@thi.ng/transducers/func/compr";
import { compR } from "@thi.ng/transducers/compr";
import { iterator1 } from "@thi.ng/transducers/iterator";
import type {
ColumnSpec,
Expand Down

0 comments on commit 4bdecc9

Please sign in to comment.