1.0.0 • Published 6 years ago

@ubisend/strings v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

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);