You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
王厅 539a1f95cc vue + ant-design + vxe-table 2 months ago
..
.npmignore vue + ant-design + vxe-table 2 months ago
History.md vue + ant-design + vxe-table 2 months ago
Makefile vue + ant-design + vxe-table 2 months ago
Readme.md vue + ant-design + vxe-table 2 months ago
component.json vue + ant-design + vxe-table 2 months ago
index.js vue + ant-design + vxe-table 2 months ago
package.json vue + ant-design + vxe-table 2 months ago

Readme.md

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.

Test

$ make test

License

MIT