Docs
/
modifiers

Modifiers

Modify and transform your content with our collection of efficient and easy-to-use functions designed to dicipher, manipulate, and transform strings.

startWith

Link Copied!

Adds a prefix to a string if it doesn't already start with the prefix.

startWith('usemods.com', 'https://')
https://usemods.com
Result

startWithout

Link Copied!

Removes a prefix from a string if it starts with the prefix.

startWithout('https://usemods.com', 'https://')
usemods.com
Result

endWith

Link Copied!

Adds a suffix to a string if it doesn't already end with the suffix.

endWith('https://usemods', '.com')
https://usemods.com
Result

endWithout

Link Copied!

Removes a suffix from a string if it ends with the suffix.

endWithout('https://usemods.com/rocks', 'rocks')
https://usemods.com/
Result

surroundWith

Link Copied!

Adds a prefix and suffix to a string if it doesn't already start and end with them.

surroundWith('usemods', 'https://', '.com')
https://usemods.com
Result

pluralize

Link Copied!

Adds plurals to a string except for excluded words.

pluralize('knife', 2)
knives
Result
This handles most english pluralisation rules, but there are exceptions.

singularize

Link Copied!

Removes plurals from a string.

singularize('knives')
knife
Result
This handles most english pluralisation rules, but there are exceptions.

ordinalize

Link Copied!

Converts a number to a string with ordinal suffix.

ordinalize(1)
1st
Result

stripHtml

Link Copied!

Strip HTML tags from a string efficiently, compatible with SSR.

Some HTML content
Result

stripWhitespace

Link Copied!

Strips whitespace from a string.

Scootersarethepastandourfuture
Result

stripNumbers

Link Copied!

Strips numbers from a string.

Scooters
Result

stripPunctuation

Link Copied!

Strips punctuation from a string.

Scooters
Result

stripSymbols

Link Copied!

Strips symbols from a string.

Scooters
Result

stripEmojis

Link Copied!

Strips emojis from a string (requires ES6 Unicode support) 🦊.

S‍erious Business
Result

slugify

Link Copied!

Converts a string to-a-slug.

scooters-are-the-future
Result

deslugify

Link Copied!

Converts a slug to a string.

scooters are the future
Result

camelCase

Link Copied!

Removes spaces and capitalizes the first letter of each word except for the first word.

scootsAndScooters
Result

pascalCase

Link Copied!

Removes spaces and capitalizes the first letter of each word.

ScootsAndScooters
Result

snakeCase

Link Copied!

Replaces spaces with underscores and converts to lowercase.

scoots_and_scooters
Result

kebabCase

Link Copied!

Replaces spaces with hyphens and converts to lowercase.

scoots-and-scooters
Result

titleCase

Link Copied!

Converts to title case by capitalizing the first letter of each word.

Scooters
Result

escapeHtml

Link Copied!

Escape HTML entities in a string.

<p>Hello World</p>
Result

unescapeHtml

Link Copied!

Unescape HTML entities in a string.

<p>Hello World</p>
Result