( strings: TemplateStringsArray, ...interpolations: string[] )
| 37 | * }) |
| 38 | */ |
| 39 | export function redactString( |
| 40 | strings: TemplateStringsArray, |
| 41 | ...interpolations: string[] |
| 42 | ): RedactString { |
| 43 | return { |
| 44 | __redactedString: true, |
| 45 | strings: strings.raw as string[], |
| 46 | interpolations, |
| 47 | }; |
| 48 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…