1.0.1 • Published 8 years ago

vprefix v1.0.1

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

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'