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
- Host: GitHub
- URL: https://github.com/mitica/is-abbr-of
- Owner: mitica
- Created: 2017-03-07T04:11:17.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-01-02T04:28:54.000Z (over 7 years ago)
- Last Synced: 2025-08-09T08:52:08.096Z (12 months ago)
- Topics: abbr, abbreviation, abbreviations
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```