/
githubmirror
/
taro
Обзор
Документация
Войти
/
githubmirror
/
taro
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/css-to-react-native/src/utils/camelCase.js
18 строк
515 B
Zakary
fix: rm the useless lint-staged config
01 июл 2022, 11:22
01 июл 2022, 11:22
b9c657f
Код
Авторство
О чём код?
export function camelCase (str) { // Lower cases the string return ( str .toLowerCase() // Replaces any - or _ characters with a space .replace(/[-_]+/g, ' ') // Removes any non alphanumeric characters .replace(/[^\w\s]/g, '') // Uppercase the first character in each group immediately following a space // (delimited by spaces) .replace(/ (.)/g, function ($1) { return $1.toUpperCase() }) // Removes spaces .replace(/ /g, '') ) }