Add <%br= %> jqhtml syntax docs, class override detection, npm update
Document event handler placement and model fetch clarification 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
24
node_modules/@babel/traverse/lib/visitors.js
generated
vendored
24
node_modules/@babel/traverse/lib/visitors.js
generated
vendored
@@ -102,7 +102,7 @@ function verify$1(visitor) {
|
||||
}
|
||||
if (shouldIgnoreKey(nodeType)) continue;
|
||||
if (!TYPES.includes(nodeType)) {
|
||||
throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${"7.28.5"}`);
|
||||
throw new Error(`You gave us a visitor for the node type ${nodeType} but it's not a valid type in @babel/traverse ${"7.28.6"}`);
|
||||
}
|
||||
const visitors = visitor[nodeType];
|
||||
if (typeof visitors === "object") {
|
||||
@@ -130,14 +130,12 @@ function merge(visitors, states = [], wrapper) {
|
||||
_verified: true,
|
||||
_exploded: true
|
||||
};
|
||||
{
|
||||
Object.defineProperty(mergedVisitor, "_exploded", {
|
||||
enumerable: false
|
||||
});
|
||||
Object.defineProperty(mergedVisitor, "_verified", {
|
||||
enumerable: false
|
||||
});
|
||||
}
|
||||
Object.defineProperty(mergedVisitor, "_exploded", {
|
||||
enumerable: false
|
||||
});
|
||||
Object.defineProperty(mergedVisitor, "_verified", {
|
||||
enumerable: false
|
||||
});
|
||||
for (let i = 0; i < visitors.length; i++) {
|
||||
const visitor = explode$1(visitors[i]);
|
||||
const state = states[i];
|
||||
@@ -209,15 +207,13 @@ function wrapCheck(nodeType, fn) {
|
||||
return newFn;
|
||||
}
|
||||
function shouldIgnoreKey(key) {
|
||||
if (key[0] === "_") return true;
|
||||
if (key.startsWith("_")) return true;
|
||||
if (key === "enter" || key === "exit" || key === "shouldSkip") return true;
|
||||
if (key === "denylist" || key === "noScope" || key === "skipKeys") {
|
||||
return true;
|
||||
}
|
||||
{
|
||||
if (key === "blacklist") {
|
||||
return true;
|
||||
}
|
||||
if (key === "blacklist") {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user