CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
README.md28 linesDownload Raw Back to camelcase-css
1# camelcase-css [![NPM Version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url]2 3> Convert a kebab-cased CSS property into a camelCased DOM property.4 5 6## Installation7[Node.js](http://nodejs.org/) `>= 6` is required. Type this at the command line:8```shell9npm install camelcase-css10```11 12 13## Usage14```js15const camelCaseCSS = require('camelcase-css');16 17camelCaseCSS('-webkit-border-radius');  //-> WebkitBorderRadius18camelCaseCSS('-moz-border-radius');     //-> MozBorderRadius19camelCaseCSS('-ms-border-radius');      //-> msBorderRadius20camelCaseCSS('border-radius');          //-> borderRadius21```22 23 24[npm-image]: https://img.shields.io/npm/v/camelcase-css.svg25[npm-url]: https://npmjs.org/package/camelcase-css26[travis-image]: https://img.shields.io/travis/stevenvachon/camelcase-css.svg27[travis-url]: https://travis-ci.org/stevenvachon/camelcase-css28 
basant307/AI_Governance_Project · CoolFace