# Classie - class helper functions

[Ripped from bonzo](https://github.com/ded/bonzo) :heart: @ded

``` js
classie.has( element, 'my-class' ) // returns true/false
classie.add( element, 'my-new-class' ) // add new class
classie.remove( element, 'my-unwanted-class' ) // remove class
classie.toggle( element, 'my-class' ) // toggle class
```

## Package management

Install with [Bower](http://bower.io) :bird:

``` bash
bower install classie
```

Install with [Component](http://github.com/component/component)

``` bash
component install desandro/classie
```

## MIT license

classie is released under the [MIT license](http://desandro.mit-license.org).
