@acusti/textual
TypeScript icon, indicating that this package has built-in type declarations

0.6.1 • Public • Published

@acusti/textual

latest version maintenance status bundle size downloads per month

Utilities for transforming and formatting text (i.e. strings).

Usage

npm install @acusti/textual
# or
yarn add @acusti/textual

Import the utilities by name. The package only has named exports, making it maximally tree-shakeable:

import { capitalize, getInitials } from '@acusti/textual';

The exported utilities are:

capitalize(text: string)

returns input text with equivalent formatting to the text-transform: capitalize; CSS property

getInitials(text: string)

returns uppercase initials from the input string, e.g. getInitials('franklin delano Roosevelt') // => 'FDR'

getNameFromEmail(email: string)

returns a formatted name from an email address, treating . and + as space separators, e.g. getNameFromEmail('franklin.delano+roosevelt@gmail.com') // => 'Franklin Delano Roosevelt'

Package Sidebar

Install

npm i @acusti/textual

Weekly Downloads

148

Version

0.6.1

License

Unlicense

Unpacked Size

24.8 kB

Total Files

12

Last publish

Collaborators

  • acusti