https://github.com/devdhera/acronym
A npm module to generate acronyms
https://github.com/devdhera/acronym
acronym npm
Last synced: about 2 months ago
JSON representation
A npm module to generate acronyms
- Host: GitHub
- URL: https://github.com/devdhera/acronym
- Owner: DevDHera
- License: mit
- Created: 2019-01-04T14:42:47.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-10T06:38:27.000Z (over 7 years ago)
- Last Synced: 2025-03-06T06:51:24.680Z (over 1 year ago)
- Topics: acronym, npm
- Language: JavaScript
- Size: 5.86 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @devdhera/acronym
Simple Acronym generator for all the node lovers :heart:.
## How to Install
Simply run the following in the terminal.
```sh
npm i @devdhera/acronym
```
## How to Use
```js
const acronym = require('@devdhera/acronym');
acronym('for your information', (err, resp) => {
if (err) {
console.log(err);
}
console.log(resp);
});
```