UNPKG

@reduxjs/toolkit

Version:

The official, opinionated, batteries-included toolset for efficient Redux development

10 lines (8 loc) 136 B
export function isValidUrl(string: string) { try { new URL(string) } catch (_) { return false } return true }