Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 8, 2024 via pnpm

upper-case 2.0.2

Transforms the string to upper case
Package summary
Share
0
issues
2
licenses
1
0BSD
1
MIT
Package created
5 Mar 2014
Version published
1 Dec 2020
Maintainers
1
Total deps
2
Direct deps
1
License
MIT

Issues

0
This package has no issues

Licenses

BSD Zero Clause License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
include-copyright
include-license
include-original
Cannot
hold-liable
Must
1 Packages, Including:
tslib@2.6.2

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
upper-case@2.0.2
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

1
All Dependencies CSV
ⓘ This is a list of upper-case 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
tslib2.6.215.59 kB0BSD
prod

Visualizations

Frequently Asked Questions

What does upper-case do?

The "upper-case" npm package is a handy tool primarily devised to convert an input string to upper case. This JavaScript-based package operates in all environments that support ES3 and the Node.js platform, offering a great utility in string handling tasks. It allows users to manipulate text and obtain the resultant string in upper case text format.

How do you use upper-case?

To use the "upper-case" package in JavaScript, start by installing it via npm with the command npm install upper-case --save. Once installed, you can import it into your project using the code import { upperCase, localeUpperCase } from "upper-case";.

There are two main functions available: upperCase() and localeUpperCase(). The upperCase function transforms the input string into uppercase. For example:

upperCase("string"); // Outputs: "STRING"

The localeUpperCase function converts the input string into upper case considering specific locale rules. For example:

localeUpperCase("string", "tr"); // Outputs: "STRİNG"

The locale here is "tr"- Turkish, which has specific rules for i and İ.

Where are the upper-case docs?

The documentation for the "upper-case" package is available on GitHub. You can find a detailed explanation of the package's use and functionalities at git://github.com/blakeembrey/change-case.git. This README file encompasses all the necessary information, from installation to detailed usage examples, and for further inquiries or contributions, interaction with the repository is welcomed.