autocapitalize
A small string manipulation library to capitalize letters based on rules
Table of Contents
Why?
I needed a fast and simple way to autocapitalize the first letter of a sentece. This library orients on the autocapitalize feature although this is not for inputs on mobile devices per se. This library just borrows the implementation to bring it to strings.
This can come in handy if you have user based content and want to manipulate the string so that it is correctly displayed on a website. Or if you write long texts your self and want to auto capitalize the beginning of every sentence. You could also implement it to autocapitalize the input value on input fields, altough this is not recommended, because it breaks the natural user expiriance, but rules exist to break them, right? 😝
Installation
$ npm i autocapitalize -S
or
$ yarn add autocapitalize
Functions
For more detailed information you can take a look at the documentation.
autocapitalize function
The function that manipulates a string.
Syntax
Returns a string
.
const capitalizedText = ;
Parameters
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
value | string |
true | The string you want to manipulate | |
rule | string |
false | off , none , on , sentences , words , characters |
rule
Type | Description |
---|---|
off , none |
autcapitalize returns the value (not manipulated) |
on , sentences |
autcapitalize returns the value where the first letter of each sentence defaults to a capital letter |
words |
autocapitalize returns the value where the first letter of each word defaults to a capital letter |
characters |
autocapitalize returns the value where all letters defaults to a capital letter |
Basic Usage
For more detailed information you can take a look at the documentation.
const autocapitalize = ; const value = 'this is an example text. this is an example text? this is an example text!' // => "this is an example text. this is an example text? this is an example text!"; // => "this is an example text. this is an example text? this is an example text!"; // => "this is an example text. this is an example text? this is an example text!"; // => "This is an example text. This is an example text? This is an example text!"; // => "This is an example text. This is an example text? This is an example text!"; // => "This Is An Example Text. This Is An Example Text? This Is An Example Text!"; // => "THIS IS AN EXAMPLE TEXT. THIS IS AN EXAMPLE TEXT? THIS IS AN EXAMPLE TEXT!";
License
MIT © Lukas Aichbauer