Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
sentence-case
Advanced tools
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.
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
A comprehensive toolkit for converting text between different case formats. It includes functionality similar to sentence-case but also supports camelCase, capitalCase, constantCase, dotCase, headerCase, noCase, paramCase, pascalCase, pathCase, snakeCase, and more. This makes it more versatile if you need to handle various text transformations.
Converts a string into title case, where the first letter of each word is capitalized. It is similar to sentence-case in that it deals with capitalization, but it applies the capitalization to each word rather than just the first word of the sentence.
Sentence case a string. Optional locale and replacement character supported.
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.
npm install sentence-case --save
var sentenceCase = require('sentence-case')
sentenceCase(null) //=> ""
sentenceCase('string') //=> "string"
sentenceCase('dot.case') //=> "dot case"
sentenceCase('camelCase') //=> "camel case"
sentenceCase('Beyoncé Knowles') //=> "beyoncé knowles"
sentenceCase('A STRING', 'tr') //=> "a strıng"
sentenceCase('HELLO WORLD!', null, '_') //=> "hello_world"
MIT
FAQs
Transform into a lower case with spaces between words, then capitalize the string
The npm package sentence-case receives a total of 2,693,539 weekly downloads. As such, sentence-case popularity was classified as popular.
We found that sentence-case 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.