(key: string, vars?: Record<string, string | number>)
| 23 | } |
| 24 | return { |
| 25 | t(key: string, vars?: Record<string, string | number>) { |
| 26 | const text = dict[key] |
| 27 | if (!text) return key |
| 28 | return fill(text, vars) |
| 29 | }, |
| 30 | } |
| 31 | } |
| 32 |
no test coverage detected