Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ramgoel/first-npm-package
- Owner: RamGoel
- Created: 2023-09-04T17:49:35.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-09-07T07:44:20.000Z (over 1 year ago)
- Last Synced: 2024-09-18T06:17:32.200Z (4 months ago)
- Topics: reverse-strings, string
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/fnpm-package
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```