@ubisend/strings
v1.0.0
Published
Useful string helpers.
Downloads
3
Keywords
Readme
strings
Helpers to manipulate strings to readable formats.
Usage
import { sentenceCase, titleCase } from "@ubisend/strings";
const snakeCase = "HeyThere";
// Outputs "hey there"
sentenceCase(snakeCase);
const underscored = "hey_there";
// Outputs "Hey There"
titleCase(underscored);