Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/devdhera/acronym

A npm module to generate acronyms
https://github.com/devdhera/acronym

acronym npm

Last synced: 13 days ago
JSON representation

A npm module to generate acronyms

Awesome Lists containing this project

README

        

# @devdhera/acronym



npm version


install size


minified size size

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);
});
```