(combo)
| 444 | } |
| 445 | |
| 446 | find(combo) { |
| 447 | const pos = [...this.combos].findIndex(c => c.keystr === combo.keystr); |
| 448 | if (pos === -1) { |
| 449 | return [false]; |
| 450 | } else { |
| 451 | return [true, pos]; |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | _load() { |
| 456 | const keystrs = this._settings.get_strv(this.action) || []; |
no outgoing calls
no test coverage detected