Skip to content

Commit

Permalink
docs: reverse
Browse files Browse the repository at this point in the history
- docs: upcoming features
  • Loading branch information
Ram-Amoncar committed Jun 12, 2024
1 parent 757abed commit 10c5c64
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ A lightweight and versatile String Utility Package for Node.js & Browser.
* [looseRegionMatch](#looseregionmatch)
* [isAlpha](#isalpha)
* [isAlphaNumeric](#isalphanumeric)
* [reverse](#reverse)

(Coming Soon)
* [reverse](#)
* [CustomValidator](#)
* [StringBuilder](#)
* [StringValidator](#)
* [Build](#build)
* [License](#license)

Expand Down Expand Up @@ -279,6 +280,12 @@ isAlphaNumeric("Hello01"); // true
isAlphaNumeric("1234567890"); // false
```

### Reverse
Reverses the sequence of characters in given string.
```js
reverse('bad') // 'dab'
```

## Build
```
npm run build
Expand Down

0 comments on commit 10c5c64

Please sign in to comment.