Classnames =========== [![Version](http://img.shields.io/npm/v/classnames.svg)](https://www.npmjs.org/package/classnames) [![Build Status](https://travis-ci.org/JedWatson/classnames.svg?branch=master)](https://travis-ci.org/JedWatson/classnames) A simple javascript utility for conditionally joining classNames together. Install with npm or Bower. ```sh npm install classnames ``` Use with node.js, browserify or webpack: ```js var classNames = require('classnames'); classNames('foo', 'bar'); // => 'foo bar' ``` Alternatively, you can simply include `index.js` on your page with a standalone `