'use strict'; const htmlTags = require('html-tags'); const basic = /\s?|(]*>|]*>|]+>)+/i; const full = new RegExp(htmlTags.map(tag => `<${tag}\\b[^>]*>`).join('|'), 'i'); module.exports = string => basic.test(string) || full.test(string);