vprefix
v1.0.1
Published
CSS vendor prefix.
Downloads
2
Readme
vendor prefix
Parse javascript and css compatible prefixes.
Supports -webkit, -moz, -o, -ms
.
Install
npm install vprefix
Usage
var vprefix = require('vprefix');
var result = vprefix.find('transition');
console.log(result.js); // => 'webkitTransition'
console.log(result.css); // => '-webkit-transition'