https://github.com/rumpl/toupper
Node stream that converts everything to upper case.
https://github.com/rumpl/toupper
Last synced: 2 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 (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-10-04T00:06:42.000Z (almost 13 years ago)
- Last Synced: 2025-03-18T20:49:38.248Z (4 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stream to upper
Convert streams to upper case.
[](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)