UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

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); }