UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

8 lines (7 loc) 272 B
// Unit tests at ./isHtml.spec.ts export { isHtml }; function isHtml(str) { // Copied and adapted from https://stackoverflow.com/questions/15458876/check-if-a-string-is-html-or-not/51325984#51325984 const re = /(<\/[^<]+>)|(<[^<]+\/>)/; return re.test(str); }