UNPKG

is-self-closing

Version:

Returns true if the given name is a HTML void element or common SVG self-closing element.

11 lines (8 loc) 239 B
'use strict'; var tags = require('self-closing-tags'); module.exports = function(name) { if (typeof name !== 'string') { throw new TypeError('expected name to be a string'); } return tags.indexOf(name.toLowerCase()) !== -1; };