root 3bf41bf355 update há 1 ano atrás
..
test 3bf41bf355 update há 1 ano atrás
.gitattributes 3bf41bf355 update há 1 ano atrás
.npmignore 3bf41bf355 update há 1 ano atrás
.travis.yml 3bf41bf355 update há 1 ano atrás
LICENSE 3bf41bf355 update há 1 ano atrás
README.md 3bf41bf355 update há 1 ano atrás
index.js 3bf41bf355 update há 1 ano atrás
package.json 3bf41bf355 update há 1 ano atrás
pre-publish.js 3bf41bf355 update há 1 ano atrás

README.md

void-elements

Array of "void elements" defined by the HTML specification

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.

Build Status Developing Dependency Status NPM version

Usage

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');

License

MIT