(url)
| 859 | } |
| 860 | |
| 861 | export const isValidURL = (url) => { |
| 862 | try { |
| 863 | return new URL(url) |
| 864 | } catch (err) { |
| 865 | return undefined |
| 866 | } |
| 867 | } |
| 868 | |
| 869 | export const formatDataGridRows = (rows) => { |
| 870 | try { |
no outgoing calls
no test coverage detected