(val: string)
| 158 | export const isStr = (val: any): val is string => typeof val === 'string'; |
| 159 | |
| 160 | export const toLower = (val: string) => val.toLowerCase(); |
| 161 | |
| 162 | /** |
| 163 | * Elements inside of web components sometimes need to inherit global attributes |
no outgoing calls
no test coverage detected
searching dependent graphs…