case-anything icon indicating copy to clipboard operation
case-anything copied to clipboard

spaceCase doesn't work for snake_case

Open emran opened this issue 2 years ago • 0 comments

It works for camelCase For Example

spaceCase('$catDog') // Output: $cat Dog

But doesn't for snake_case

spaceCase('$cat_dog') // Output: $cat_dog 
// but Expected output: $cat dog

emran avatar Nov 07 '23 19:11 emran