Socket
Socket
Sign inDemoInstall

sentence-case

Package Overview
Dependencies
4
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    sentence-case

Sentence case a string


Version published
Weekly downloads
6.5M
increased by0.98%
Maintainers
1
Install size
51.2 kB
Created
Weekly downloads
 

Package description

What is sentence-case?

The sentence-case npm package is designed to convert strings to sentence case, where the first letter of the sentence is capitalized and all other letters are in lower case. This is useful for formatting text to adhere to grammatical rules in English and other languages that follow similar capitalization rules.

What are sentence-case's main functionalities?

Convert string to sentence case

This feature allows you to convert any given string to sentence case. It also supports locale-based transformations, which can be useful for languages with specific casing rules.

const sentenceCase = require('sentence-case');

const result = sentenceCase('string'); // 'String'
const resultWithLocale = sentenceCase('STRING', 'tr'); // 'Strıng' with Turkish locale

Other packages similar to sentence-case

Readme

Source

Sentence Case

NPM version NPM downloads Build status Test coverage

Sentence case a string. Explicitly adds a single underscore between groups of numbers to maintain readability and reversibility (E.g. 1.20.5 becomes 1_20_5, not 1205), by default.

Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString property, numbers and booleans. Empty values (null and undefined) will result in an empty string.

Installation

Node

npm install sentence-case --save

Usage

var sentenceCase = require('sentence-case')

sentenceCase('string')         //=> "String"
sentenceCase('dot.case')       //=> "Dot case"
sentenceCase('PascalCase')     //=> "Pascal case"
sentenceCase('version 1.2.10') //=> "Version 1 2 10"

sentenceCase('STRING 1.2', 'tr') //=> "Strıng 1 2"

Typings

Includes a TypeScript definition.

License

MIT

Keywords

FAQs

Last updated on 18 Mar 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc