www_hero/node_modules/camelcase-css
sasha-astiadi 324d5960af hero_web
2024-05-03 06:39:20 +02:00
..
index-es5.js hero_web 2024-05-03 06:39:20 +02:00
index.js hero_web 2024-05-03 06:39:20 +02:00
license hero_web 2024-05-03 06:39:20 +02:00
package.json hero_web 2024-05-03 06:39:20 +02:00
README.md hero_web 2024-05-03 06:39:20 +02:00

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