adi-o3-multipass/frontend/node_modules/camelcase-css
2025-09-16 07:53:27 -05:00
..
index-es5.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
index.js added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
license added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
package.json added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05:00
README.md added front end - can process one at a time currently - need to fix multi-upload and processing 2025-09-16 07:53:27 -05: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