root 3bf41bf355 update | há 1 ano atrás | |
---|---|---|
.. | ||
test | há 1 ano atrás | |
.gitattributes | há 1 ano atrás | |
.npmignore | há 1 ano atrás | |
.travis.yml | há 1 ano atrás | |
LICENSE | há 1 ano atrás | |
README.md | há 1 ano atrás | |
index.js | há 1 ano atrás | |
package.json | há 1 ano atrás | |
pre-publish.js | há 1 ano atrás |
Exports an Array of "void element" node names as defined by the HTML spec.
The list is programatically generated from the latest W3C HTML draft.
var voidElements = require('void-elements');
assert(voidElements.indexOf('span') === -1, '<span> is not a void element');
assert(voidElements.indexOf('img') !== -1, '<img> is a void element');
MIT