Parse javascript and css compatible prefixes.
Supports -webkit, -moz, -o, -ms
.
npm install vprefix
var vprefix = require('vprefix');
var result = vprefix.find('transition');
console.log(result.js); // => 'webkitTransition'
console.log(result.css); // => '-webkit-transition'