UNPKG

marko

Version:

UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.

11 lines (9 loc) 172 B
module.exports = function isTextOnly(nodeName) { switch (nodeName) { case "textarea": case "script": case "style": return true; } return false; };