You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ashley Flanagan b625ccd8d6 feat: docker compose maybe 10 months ago
..
README.md feat: docker compose maybe 10 months ago
index-es5.js feat: docker compose maybe 10 months ago
index.js feat: docker compose maybe 10 months ago
license feat: docker compose maybe 10 months ago
package.json feat: docker compose maybe 10 months ago

README.md

camelcase-css NPM Version Build Status

Convert a kebab-cased CSS property into a camelCased DOM property.

Installation

Node.js >= 6 is required. Type this at the command line:

npm install camelcase-css

Usage

const camelCaseCSS = require('camelcase-css');

camelCaseCSS('-webkit-border-radius');  //-> WebkitBorderRadius
camelCaseCSS('-moz-border-radius');     //-> MozBorderRadius
camelCaseCSS('-ms-border-radius');      //-> msBorderRadius
camelCaseCSS('border-radius');          //-> borderRadius