Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
autocapitalize
Advanced tools
A small string manipulation library to capitalize letters based on rules
A small string manipulation library to capitalize letters based on rules
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? 😝
$ npm i autocapitalize -S
or
$ yarn add autocapitalize
For more detailed information you can take a look at the documentation.
The function that manipulates a string.
Returns a string
.
const capitalizedText = autocapitalize(value, rule);
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
value | string | true | The string you want to manipulate | |
rule | string | false | off , none , on , sentences , words , characters |
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 |
For more detailed information you can take a look at the documentation.
const { autocapitalize } = require('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!"
autocapitalize(value);
// => "this is an example text. this is an example text? this is an example text!"
autocapitalize(value, 'off');
// => "this is an example text. this is an example text? this is an example text!"
autocapitalize(value, 'none');
// => "This is an example text. This is an example text? This is an example text!"
autocapitalize(value, 'on');
// => "This is an example text. This is an example text? This is an example text!"
autocapitalize(value, 'sentences');
// => "This Is An Example Text. This Is An Example Text? This Is An Example Text!"
autocapitalize(value, 'words');
// => "THIS IS AN EXAMPLE TEXT. THIS IS AN EXAMPLE TEXT? THIS IS AN EXAMPLE TEXT!"
autocapitalize(value, 'characters');
MIT © Lukas Aichbauer
FAQs
A small string manipulation library to capitalize letters based on rules
The npm package autocapitalize receives a total of 1 weekly downloads. As such, autocapitalize popularity was classified as not popular.
We found that autocapitalize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.