npm install cache-breaker#Cache Breaking Tasks 
**Note: This modules does nothing with the file system, that means you'll have to read/write files yourself, or wait for
the Grunt & Gulp Plugins**
##Install
```
npm install cache-breaker
##Use in project
``
var cacheBreaker = require("cache-breaker");
###Usage Examples
Append a timestamp as query string
`js
var string = '';
cacheBreaker.breakCache(string, ['style.css', 'style2.css']);
// output
//
`
Append a timestamp in the filename
`js
var string = '';
cacheBreaker.breakCache(string, 'style.css', {position: 'filename'});
// output
//
`
Overwrite an exiting timestamp
Use this when you have rewrite rules in place.
`js
var string = '';
cacheBreaker.breakCache(string, 'style.*.css', {position: 'overwrite'});
// output
//
``
##TODO
- [ ] Grunt Plugin
- [ ] Gulp Plugin
- [x] Accept file src for creating MD5 hash
- [x] Allow user-specified string in place of timestamp