Skip to content

Commit

Permalink
lint imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bchamagne committed Oct 17, 2023
1 parent 78b8b74 commit c450946
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/typed_encoding.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import {
deserializeString,
serializeString,
nextUint8
} from "./utils"
} from "./utils.js"

import VarInt from "./varint"
import VarInt from "./varint.js"

export default {
serialize,
Expand Down
2 changes: 1 addition & 1 deletion src/varint.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { toByteArray, concatUint8Arrays, nextUint8, fromByteArray } from "./utils"
import { toByteArray, concatUint8Arrays, nextUint8, fromByteArray } from "./utils.js"

export default {
serialize,
Expand Down

0 comments on commit c450946

Please sign in to comment.