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

https://github.com/mitica/is-abbr-of

A nodejs module for detecting the long form of an abbreviation
https://github.com/mitica/is-abbr-of

abbr abbreviation abbreviations

Last synced: 2 months ago
JSON representation

A nodejs module for detecting the long form of an abbreviation

Awesome Lists containing this project

README

          

# is-abbr-of

A nodejs module for detecting the long form of an abbreviation.

## Usage

```
const isAbbrOf = require('is-abbr-of);

isAbbrOf('USFJ', 'United States Forces Japan'); // true
isAbbrOf('MEC', 'Mountain Equipment Co-Op'); // true
isAbbrOf('RBI', 'Reserve Bank of India'); // true
```