
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@shipengine/capitalization
Advanced tools
String capitalization functions with special cases for certain ShipEngine words and phrases
String capitalization functions with special cases for certain ShipEngine words and phrases
import { snakeCase, pascalCase, titleCase } from "@shipengine/capitalization";
snakeCase("TheShipEngineSDKForWoocommerce"); // --> the_shipengine_sdk_for_woo_commerce
pascalCase("the_shipengine_sdk_for_woocommerce"); // --> TheShipEngineSdkForWooCommerce
titleCase("theShipengineSDKForWoocommerce"); // --> The ShipEngine SDK for WooCommerce
You can install ShipEngine Capitalization via npm.
npm install @shipengine/capitalization
You can import the specific capitalization function(s) that you need to use:
import { kebabCase, camelCase, sentenceCase } from "@shipengine/capitalization";
Or you can import the entire capitalization module and use its methods:
import capitalization from "@shipengine/capitalization";
capitalization.kebabCase("some text");
ShipEngine Capitalization exports several different capitalization functions, each of which accepts the same parameters:
text - A string containing one or more words. The string can be in any format (snake case, camel case, pascal case, sentence case, etc.)
options - An optional Options object
snakeCase(text, [options])Snake case strings are all lowercase with underscores as word separators. No whitespace or punctuation characters are allowed, and the string must begin with a letter.
| Example inputs | Example outputs |
|---|---|
Hello, World! | hello_world |
TheShipEngineAPI | the_shipengine_api |
kebabCase(text, [options])Kebab case strings are all lowercase with hyphens as word separators. No whitespace or punctuation characters are allowed, and the string must begin with a letter.
| Example inputs | Example outputs |
|---|---|
Hello, World! | hello-world |
TheShipEngineAPI | the-shipengine-api |
camelCase(text, [options])Camel case strings use capitalization as word separators. Each new word begins with a capital letter, followed by lowercase letters. No whitespace or punctuation characters are allowed, and the string must begin with a lowercase letter.
| Example inputs | Example outputs |
|---|---|
Hello, World! | helloWorld |
this is the shipengine api | thisIsTheShipEngineApi |
pascalCase(text, [options])Pascal case strings use capitalization as word separators. Each new word begins with a capital letter, followed by lowercase letters. No whitespace or punctuation characters are allowed, and the string must begin with an uppercase letter.
| Example inputs | Example outputs |
|---|---|
Hello, World! | HelloWorld |
this is the shipengine api | ThisIsTheShipEngineApi |
sentenceCase(text, [options])Sentence case strings follow basic English sentence rules. Words are separated by spaces. The first word is capitalized, and most other words are lowercase, except for proper nouns and acronyms. Punctuation characters are allowed.
| Example inputs | Example outputs |
|---|---|
hello_world | Hello world |
this is the shipengine api | This is the ShipEngine API |
titleCase(text, [options])Title case strings follow title case rules. Words are separated by spaces, most words are capitalized, and punctuation characters are allowed.
| Example inputs | Example outputs |
|---|---|
hello_world | Hello World |
this is the shipengine api | This is the ShipEngine API |
Options objectAll of the ShipEngine Capitalization function accept an optional second argument, which is an options object. This object can contain any of the following options:
| Option | Type | Default | Description |
|---|---|---|---|
prefix | string | n/a | A prefix to be used when the result would otherwise be invalid due to starting with an illegal character. For example, snakeCase("4x6 label") would throw an error because snake case strings cannot start with a number. But snakeCase("4x6 label", { prefix: "size" }) would return size_4x6_label.Note: The prefix is only added when needed. So snakeCase("label size 4x6", { prefix: "size" }) would not use the prefix. |
FAQs
String capitalization functions with special cases for certain ShipEngine words and phrases
The npm package @shipengine/capitalization receives a total of 217 weekly downloads. As such, @shipengine/capitalization popularity was classified as not popular.
We found that @shipengine/capitalization demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers 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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.