2.1.0 • Published 1 year ago

css-camel v2.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year 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'