fix removeHook

This commit is contained in:
李璐 2025-02-13 12:23:17 +08:00 committed by jiuyuetianjiuyuetian
parent a981f2b241
commit 4573cfd2b4

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]
}
/**