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

https://github.com/ebenezerdon/apos-to-lex-form

An npm package that converts apostrophe-connecting words to their standard lexicon form (for natural language processing)
https://github.com/ebenezerdon/apos-to-lex-form

Last synced: about 2 months ago
JSON representation

An npm package that converts apostrophe-connecting words to their standard lexicon form (for natural language processing)

Awesome Lists containing this project

README

          

### This package converts apostrophe-connecting words to their standard lexicon form

[Link to npm package](https://www.npmjs.com/package/apos-to-lex-form)

# Install
```
$ npm i -s 'apos-to-lex-form'
```
# Usage
```
const aposToLexForm = require('apos-to-lex-form');
```
```
aposToLexForm("I'm not really sure but it looks like we've got what you're searching for.");
// I am not really sure but it looks like we have got what you are searching for.
```