fix removeHook

This commit is contained in:
李璐 2025-02-13 12:23:17 +08:00
parent 2f9641604f
commit b3f0ce1e12

View File

@ -124,8 +124,10 @@ function removeHooks (hookName, handler) {
if (index !== -1) {
hooks.splice(index, 1)
}
} else if (__hooks[hookName]) {
__hooks[hookName] = null
// delete __hooks[hookName]
}
delete __hooks[hookName]
}
/**