(instance: object)
| 1 | export function throwUnsupported(instance: object) { |
| 2 | throw new Error( |
| 3 | `Unsupported operation performed in ${instance.constructor.name}` |
| 4 | ); |
| 5 | } |
| 6 | |
| 7 | export function isValidUrl(str: string) { |
| 8 | try { |
no outgoing calls
no test coverage detected