ui/node_modules/camelcase-css
2023-08-29 09:34:54 +02:00
..
index-es5.js Updated Things. Got navbar workinggit add Trunk.toml tailwind.config.js package.json package-lock.json index.html Cargo.toml .gitignore src/ node_modules/ assets/ 2023-08-29 09:34:54 +02:00
index.js Updated Things. Got navbar workinggit add Trunk.toml tailwind.config.js package.json package-lock.json index.html Cargo.toml .gitignore src/ node_modules/ assets/ 2023-08-29 09:34:54 +02:00
license Updated Things. Got navbar workinggit add Trunk.toml tailwind.config.js package.json package-lock.json index.html Cargo.toml .gitignore src/ node_modules/ assets/ 2023-08-29 09:34:54 +02:00
package.json Updated Things. Got navbar workinggit add Trunk.toml tailwind.config.js package.json package-lock.json index.html Cargo.toml .gitignore src/ node_modules/ assets/ 2023-08-29 09:34:54 +02:00
README.md Updated Things. Got navbar workinggit add Trunk.toml tailwind.config.js package.json package-lock.json index.html Cargo.toml .gitignore src/ node_modules/ assets/ 2023-08-29 09:34:54 +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