Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ramgoel/first-npm-package

A npm package which exports a function to reverse string
https://github.com/ramgoel/first-npm-package

reverse-strings string

Last synced: about 2 months ago
JSON representation

A npm package which exports a function to reverse string

Awesome Lists containing this project

README

        

## fnpm-package

- My first npm package made for just a try.

- It contains a reverse string function which takes a parameter `s` and returns reverse of that string.

### Usage Example

```
const reverseString=require('fnpm-package')

console.log('joe') //outputs eoj
```