UNPKG

itmar-block-packages

Version:

We have put together a package of common React components used for WordPress custom blocks.

11 lines (10 loc) 252 B
//URLのバリデーションチェック export const isValidUrlWithUrlApi = (string) => { try { const cleanString = string.replace(/<[^>]+>/g, ""); new URL(cleanString); return true; } catch (err) { return false; } };