/acronym

A npm module to generate acronyms

Primary LanguageJavaScriptMIT LicenseMIT

@devdhera/acronym

npm version install size minified size size

Simple Acronym generator for all the node lovers ❤️.

How to Install

Simply run the following in the terminal.

npm i @devdhera/acronym

How to Use

const acronym = require('@devdhera/acronym');

acronym('for your information', (err, resp) => {
    if (err) {
        console.log(err);
    }

    console.log(resp);
});