@f/is-valid-attr
v1.0.0
Published
Check whether or not a value is a valid attribute of a DOM element
Downloads
15
Readme
is-valid-attr
Check whether or not a value is a valid DOM attribute
Installation
$ npm install @f/is-valid-attr
Usage
var isValidAttr = require('@f/is-valid-attr')
function setAttribute (node, name, value) {
if (isValidAttr(value)) {
node.setAttribute(name, value)
}
}
API
isValidAttr(value)
value
- The value who's validity you want to check
Returns: Boolean indicating whether or not the value can be set as an attribute of a DOM element
License
MIT