1.0.0 • Published 8 years ago

@f/is-valid-attr v1.0.0

Weekly downloads
8
License
MIT
Repository
github
Last release
8 years ago

is-valid-attr

Build status Git tag NPM version Code style

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