2.1.0 • Published 2 years ago

css-camel v2.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

install

npm install css-camel

usage

CSSToCamel

import {CSSToCamel} from 'css-camel'
CSSToCamel('background-color:pink') // 'backgroundColor:pink'

CamelToCSS

import {CamelToCSS} from 'css-camel'
CamelToCSS('backgroundColor:pink') // 'background-color:pink'