(keyString)
| 1419 | } |
| 1420 | |
| 1421 | function parseKeyString(keyString) { |
| 1422 | if (!keyString) return []; |
| 1423 | return String(keyString) |
| 1424 | .split("|") |
| 1425 | .map((combo) => combo.trim()) |
| 1426 | .filter(Boolean); |
| 1427 | } |
| 1428 | |
| 1429 | function hasOwnBindingOverride(name) { |
| 1430 | return Object.prototype.hasOwnProperty.call(resolvedKeyBindings ?? {}, name); |
no test coverage detected