Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 356 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 356 Bytes

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'