htmv 0.0.43 → 0.0.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -63,7 +63,7 @@ export function parse(tokens) {
63
63
  i++;
64
64
  if (nextToken?.type !== "arguments")
65
65
  throw new Error("Missing arguments in isset");
66
- const [itemName] = nextToken.value;
66
+ const itemName = nextToken.value;
67
67
  if (itemName === undefined)
68
68
  throw new Error("Expected item name");
69
69
  const children = parseChildren(tag);
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "htmv",
3
3
  "main": "dist/index.js",
4
4
  "type": "module",
5
- "version": "0.0.43",
5
+ "version": "0.0.44",
6
6
  "devDependencies": {
7
7
  "@biomejs/biome": "2.3.3",
8
8
  "@types/bun": "latest"