(names: string[])
| 15 | }; |
| 16 | |
| 17 | export const missing = (names: string[]): string[] => { |
| 18 | return names.filter((name) => !blocks.has(name)); |
| 19 | }; |
| 20 | |
| 21 | export const get = (name: string) => { |
| 22 | if (name.toLowerCase() === name) { |
nothing calls this directly
no outgoing calls
no test coverage detected