source: node_modules/@reduxjs/toolkit/src/query/utils/isValidUrl.ts

Last change on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 127 bytes
RevLine 
[a762898]1export function isValidUrl(string: string) {
2 try {
3 new URL(string)
4 } catch (_) {
5 return false
6 }
7
8 return true
9}
Note: See TracBrowser for help on using the repository browser.