(str, prefix)
| 151 | } |
| 152 | |
| 153 | export function startsWith(str, prefix) { |
| 154 | return str.lastIndexOf(prefix, 0) === 0; |
| 155 | } |
| 156 | |
| 157 | export function supportRef(nodeOrComponent) { |
| 158 | const type = isMemo(nodeOrComponent) |
no outgoing calls
no test coverage detected