Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Newbie012 committed Jan 4, 2025
1 parent b24a20e commit f523287
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/generate/src/ast-describe.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ function getDescribedAExpr({
"~~*": { string: "boolean", number: "boolean" },
}

const operator = concatStringNodes(node.name).replace(/^\!/, "");
const operator = concatStringNodes(node.name).replace(/^!/, "");
const resolved = typeMap[operator]?.[lnode.value] ?? null;

if (resolved === null) {
Expand Down

0 comments on commit f523287

Please sign in to comment.