()
| 25 | const cacheAllTags = initGlobalData({ |
| 26 | key: 'cache-all-public-tags', |
| 27 | initialData() { |
| 28 | const data = { |
| 29 | value: null as null | SelectTag[], |
| 30 | reset() { |
| 31 | data.value = null |
| 32 | }, |
| 33 | } |
| 34 | return data |
| 35 | }, |
| 36 | }) |
| 37 | |
| 38 | function validateTagName(name?: string | null) { |
nothing calls this directly
no outgoing calls
no test coverage detected