Skip to content

Commit

Permalink
chore: fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
gurgunday committed Oct 26, 2024
1 parent c558bed commit 077bbc0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bench/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

const { html } = require("ghtml");
const { html } = require("..");
const { Bench } = require("tinybench");
const { writeFileSync } = require("node:fs");

Expand Down
2 changes: 1 addition & 1 deletion test/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { html, htmlGenerator, htmlAsyncGenerator } = require("..");
const { readFile } = require("node:fs/promises");
const { readFileSync } = require("node:fs");
const test = require("node:test");
const assert = require("node:assert");
const assert = require("node:assert/strict");

const conditionTrue = true;
const conditionFalse = false;
Expand Down

0 comments on commit 077bbc0

Please sign in to comment.