Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fb55 committed Dec 23, 2024
1 parent 767fd81 commit c8ba5fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Parser.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Tokenizer, { type Callbacks, QuoteType } from "./Tokenizer.js";
import { fromCodePoint } from "entities/dist/decode.js";
import { fromCodePoint } from "entities/decode";

const formTags = new Set([
"input",
Expand Down
2 changes: 1 addition & 1 deletion src/Tokenizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
DecodingMode,
htmlDecodeTree,
xmlDecodeTree,
} from "entities/dist/decode.js";
} from "entities/decode";

const enum CharCodes {
Tab = 0x9, // "\t"
Expand Down

0 comments on commit c8ba5fa

Please sign in to comment.