event-attributes
v1.0.1
Published
Map of HTML and SVG event attributes.
Downloads
2,377
Readme
event-attributes
Map of HTML and SVG event attributes.
Installation
Type this at the command line:
npm install event-attributes --save-dev
Usage
Server/Browserify
var eventAttributes = require("event-attributes");
if (eventAttributes.html["onclick"] === true) {
// is an html event attribute
}
if (eventAttributes.svg["onrepeat"] === true) {
// is an svg event attribute
}
UMD/AMD/etc
Accessible via define()
or window.eventAttributes
.