UNPKG

@nodegui/vue-nodegui

Version:

library to render native desktop applications using vue js

10 lines (9 loc) 164 B
export function isValidUrl(str: string) { try { // eslint-disable-next-line no-new new URL(str); return true; } catch (_) { return false; } }