Exactly one quoted literal and no concatenation → that literal is the key.
(text: string)
| 74 | |
| 75 | /** Exactly one quoted literal and no concatenation → that literal is the key. */ |
| 76 | function singleStringLiteral(text: string): string | undefined { |
| 77 | const m = text.match(/^[^'"`]*(['"`])([\w.:-]{2,64})\1[^'"`]*$/); |
| 78 | return m ? m[2] : undefined; |
| 79 | } |
| 80 | |
| 81 | const FORMS: FormSpec[] = [ |
| 82 | { |
no outgoing calls
no test coverage detected