![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/vreg/node_modules/vue/src/core/instance/render-helpers/ |
/* @flow */ import config from 'core/config' import { hyphenate } from 'shared/util' function isKeyNotMatch<T> (expect: T | Array<T>, actual: T): boolean { if (Array.isArray(expect)) { return expect.indexOf(actual) === -1 } else { return expect !== actual } } /** * Runtime helper for checking keyCodes from config. * exposed as Vue.prototype._k * passing in eventKeyName as last argument separately for backwards compat */ export function checkKeyCodes ( eventKeyCode: number, key: string, builtInKeyCode?: number | Array<number>, eventKeyName?: string, builtInKeyName?: string | Array<string> ): ?boolean { const mappedKeyCode = config.keyCodes[key] || builtInKeyCode if (builtInKeyName && eventKeyName && !config.keyCodes[key]) { return isKeyNotMatch(builtInKeyName, eventKeyName) } else if (mappedKeyCode) { return isKeyNotMatch(mappedKeyCode, eventKeyCode) } else if (eventKeyName) { return hyphenate(eventKeyName) !== key } return eventKeyCode === undefined }