UNPKG

263 BJavaScriptView Raw
1var newElement = require("new-element");
2
3module.exports = ifNecessary;
4
5function ifNecessary (html, vars) {
6 if (!isHTML(html)) return html;
7 return newElement(html, vars);
8}
9
10function isHTML(text){
11 return typeof text == 'string' && text.charAt(0) == '<';
12}