# to-upper

> Converts string, as a whole, to upper case.

Latest version **1.0.1** (published 2016-04-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install to-upper
pnpm add to-upper
yarn add to-upper
bun add to-upper
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.1 |
| Published | 2016-04-15 |
| First published | 2016-04-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | bubkoo |
| Keywords | string, to, parse, convert, converter, parser, upper, uppercase, lower, lowercase |

## Links

- npm: https://www.npmjs.com/package/to-upper
- Repository: https://github.com/gearcase/to-upper
- Homepage: https://github.com/gearcase/to-upper#readme
- Issues: https://github.com/gearcase/to-upper/issues
- npm.io page: https://npm.io/package/to-upper

## Dependencies (1)

- [to-str](https://npm.io/package/to-str.md) ^1.0.0

## Alternatives

- [babylon](https://npm.io/package/babylon.md) — 5.1M weekly downloads
- [csscolorparser](https://npm.io/package/csscolorparser.md) — 3.7M weekly downloads
- [expr-eval-fork](https://npm.io/package/expr-eval-fork.md) — 1.5M weekly downloads
- [@leeoniya/ufuzzy](https://npm.io/package/@leeoniya/ufuzzy.md) — 247.7K weekly downloads
- [xml-parser](https://npm.io/package/xml-parser.md) — 78.4K weekly downloads

## Recent versions

- 1.0.1 (latest) — 2016-04-15
- 1.0.0 — 2016-04-13
- 0.0.0 — 2016-04-12

## README

# to-upper

> Converts string, as a whole, to upper case.


[![MIT License](https://img.shields.io/badge/license-MIT_License-green.svg?style=flat-square)](https://github.com/gearcase/to-upper/blob/master/LICENSE)

[![build:?](https://img.shields.io/travis/gearcase/to-upper/master.svg?style=flat-square)](https://travis-ci.org/gearcase/to-upper)
[![coverage:?](https://img.shields.io/coveralls/gearcase/to-upper/master.svg?style=flat-square)](https://coveralls.io/github/gearcase/to-upper)


## Install

```
$ npm install --save to-upper 
```


## Usage

> For more use-cases see the [tests](https://github.com/gearcase/to-upper/blob/master/test/spec/index.js)

```js
var toUpper = require('to-upper');

toUpper('ABC');          // => 'ABC'
toUpper('--foo-bar--');  // => '--FOO-BAR--'
toUpper('fooBar');       // => 'FOOBAR'
toUpper('__foo_bar__');  // => '__FOO_BAR__'
```

## Related

- [to-lower](https://github.com/gearcase/to-lower) - Converts string, as a whole, to lower case.
- [to-integer](https://github.com/gearcase/to-integer) - Converts the given value to an integer.
- [to-num](https://github.com/gearcase/to-num) - Converts the given value to a number.
- [to-str](https://github.com/gearcase/to-str) - Converts the given value to a string.
- [to-length](https://github.com/gearcase/to-length) - Converts value to an integer suitable for use as the length of an array-like object.
- [to-path](https://github.com/gearcase/to-path) - Converts value to a property path array. 
- [to-source-code](https://github.com/gearcase/to-source-code.git) - Converts function to its source code.


## Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please [create an issue](https://github.com/gearcase/to-upper/issues/new).

---
_Source: https://npm.io/package/to-upper · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
