randomuppercase
Version:
A simple random UpperCase tool
27 lines (16 loc) • 556 B
Markdown
# randomuppercase
#### What\'s this?
A simple tool to change lowercase letter to uppercase letter randomly in string.
Tips: This package was actually on npmjs.org for a few years, but due to a mistake by npmjs, it was deleted and could not be restored. npmjs suggested that I should re-upload it.
#### How to use
First, install it from NPM
```
npm install randomuppercase
```
Second, import & code
```
const ruc = require("randomuppercase");
console.log(ruc("abcd1234"));
```
#### Tips
The length of the string should be long than 5. license MIT