Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 948 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 948 Bytes

void-elements

Object of "void elements" defined by the HTML Standard

Exports an Object of "void element" node names as defined by the HTML spec.

The list is programatically generated from the latest WHATWG HTML Standard.

Build Status Developing Dependency Status npm version

Usage

const voidElements = require('void-elements');

assert(!voidElements['span'], '<span> is not a void element');
assert(voidElements['img'], '<img> is a void element');

License

MIT