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)
- Host: GitHub
- URL: https://github.com/ebenezerdon/apos-to-lex-form
- Owner: ebenezerdon
- Created: 2019-11-01T16:32:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-01T16:36:02.000Z (over 6 years ago)
- Last Synced: 2025-10-12T07:12:52.915Z (8 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 11
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
```