mesqueeb/case-anything

spaceCase doesn't work for snake_case

emran opened this issue · 0 comments

emran commented

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