classes-component

1.1.3 • Public • Published

classes

Cross-browser element class manipulation, utilizing the native .classList when possible. This is not designed to be a .classList polyfill.

Installation

$ component install component/classes

Example

var classes = require('classes');
classes(el)
  .add('foo')
  .toggle('bar')
  .remove(/^item-\d+/);

API

.add(class)

Add class.

.remove(class)

Remove class name or all classes matching the given regular expression.

.toggle(class)

Toggle class.

.has(class)

Check if class is present.

.array()

Return an array of classes.

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i classes-component

Weekly Downloads

103

Version

1.1.3

License

none

Last publish

Collaborators

  • tjholowaychuk