You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mahdi
0cb8d673d7
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago | |
index-es5.js | 2 years ago | |
index.js | 2 years ago | |
license | 2 years ago | |
package.json | 2 years ago |
README.md
camelcase-css
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