(id: string)
| 37 | } |
| 38 | |
| 39 | function actionId(id: string) { |
| 40 | if (!id.startsWith(SUGGESTED_PREFIX)) return id |
| 41 | return id.slice(SUGGESTED_PREFIX.length) |
| 42 | } |
| 43 | |
| 44 | function normalizeKey(key: string) { |
| 45 | if (key === ",") return "comma" |
no outgoing calls
no test coverage detected