Skip to content

Latest commit

 

History

History
23 lines (13 loc) · 271 Bytes

README.md

File metadata and controls

23 lines (13 loc) · 271 Bytes

string-upper

Change string to upper case. Build with nan.

Install

# With npm 
npm i string-upper 

How to use

const upperCase = require('string-upper');

upperCase('pizza') // ~> PIZZA
upperCase('hello world') // ~> HELLO WORLD