Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rumpl/toupper
Node stream that converts everything to upper case.
https://github.com/rumpl/toupper
Last synced: 15 days ago
JSON representation
Node stream that converts everything to upper case.
- Host: GitHub
- URL: https://github.com/rumpl/toupper
- Owner: rumpl
- Created: 2012-10-03T23:48:14.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-10-04T00:06:42.000Z (over 12 years ago)
- Last Synced: 2024-11-25T01:25:27.912Z (3 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stream to upper
Convert streams to upper case.
[![build status](https://secure.travis-ci.org/rumpl/toupper.png)](http://travis-ci.org/rumpl/toupper)
## Example
```javascript
var toUpper = require('toupper');process.stdin.pipe(toUpper()).pipe(process.stdout);
``````sh
$ node main.js
test
TEST
asdf
ASDF
```## Install
```sh
$ npm install toupper
```## License
[MIT](http://rumpl.mit-license.org)