@f/is-valid-attr

1.0.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i @f/is-valid-attr

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • f