case-anything
case-anything copied to clipboard
spaceCase doesn't work for snake_case
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