(value: string)
| 66 | * since they effectively create a new template. |
| 67 | */ |
| 68 | export const unsafeStatic = (value: string): StaticValue => ({ |
| 69 | ['_$litStatic$']: value, |
| 70 | r: brand, |
| 71 | }); |
| 72 | |
| 73 | const textFromStatic = (value: StaticValue) => { |
| 74 | if (value['_$litStatic$'] !== undefined) { |
no outgoing calls
no test coverage detected
searching dependent graphs…