(keyword: string)
| 662 | const result: Partial<Record<string, string | boolean>> = { uuid }; |
| 663 | |
| 664 | const searchName = (keyword: string) => { |
| 665 | if (OPTION_CASE_INSENSITIVE) { |
| 666 | return stringMatching(script.name.toLowerCase(), keyword.toLowerCase()); |
| 667 | } |
| 668 | return stringMatching(script.name, keyword); |
| 669 | }; |
| 670 | const searchCode = (keyword: string) => { |
| 671 | let c = codeCache[script.uuid]; |
| 672 | if (!c) { |
nothing calls this directly
no test coverage detected