1.0.1 • Published 8 years ago

parsec-rev-path v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

parsec-rev-path Build Status

Create a revved file path

Install

$ npm install --save parsec-rev-path

Usage

var revPath = require('parsec-rev-path');
var hash = 'bb9d8fe615'

var path = revPath('src/unicorn.png', hash);
//=> 'src/unicorn.png?v=bb9d8fe615'

revPath('src/unicorn.png', Date.now());
//=> 'src/unicorn.png?v=1432309925925'

// you can also revert an already hashed path
revPath.revert(path, hash);
//=> 'src/unicorn.png'

License

MIT © Yanghc