Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
vslinko committed May 15, 2024
1 parent 6afea02 commit 31fc25b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion reader.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type { Reader } from "@std/io/types";
import { concat } from "@std/bytes/concat";
import { repeat } from "@std/bytes/repeat";
import { getLogger, Logger } from "@std/log";
import type { Logger } from "@std/log";
import { getLogger } from "@std/log";
import { iterateReader } from "@std/io/iterate-reader";
import { getUint8Array, hasPrefixFrom } from "./utils.ts";

Expand Down
2 changes: 1 addition & 1 deletion writer.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { concat } from "@std/bytes/concat";
import { indexOfNeedle } from "@std/bytes/index-of-needle";
import type { SyncAsyncIterable } from "./utils.ts";
import {
dummyAsyncIterable,
getUint8Array,
hasPrefixFrom,
isAsyncIterable,
makeAsyncIterable,
SyncAsyncIterable,
} from "./utils.ts";

/** Options for CSV writer */
Expand Down

0 comments on commit 31fc25b

Please sign in to comment.