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.
@agape/string
Advanced tools
String and token manipulation
import {
camelize,
classify,
pluralize,
titalize,
tokenize,
verbalize
} from '@agape/string'
camelize('foo bar') // fooBar
classify('Foo bar') // FooBar
pluralize('foo') // foos
titalize('a foo a bar') // A Foo a Bar
tokenize('Foo bar') // foo-bar
verbalize('foo-bar') // Foo bar
Translate strings between different representations.
camelize
Convert to camel case.
classify
Remove all symbols and spaces, captialize words.
pluralize
Adds an 's' to most words. Words that end in 'y' are changed to 'ies', words that end in 'us' are changed to 'i'.
titalize
The first letter of each word is capitalized with the exception of
a, an, and, at, be, but, by, for, if, in, of, on, the, to
which are only
capitalized if they are the first word in the string, otherwise they
are converted to lowercase.
tokenize
Converted to lower case, word boundaries replaced with dashes.
verbalize
First character capitalized, word boundaries replaced with spaces.
Maverik Minett maverik.minett@gmail.com
© 2020-2021 Maverik Minett
MIT
FAQs
String and token manipulation
The npm package @agape/string receives a total of 1 weekly downloads. As such, @agape/string popularity was classified as not popular.
We found that @agape/string demonstrated a healthy version release cadence and project activity because the last version was released less than 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.