A package that gives tense of words
npm install tenseflow
Installing Via NPM
`
npm i tenseflow
`
Import into your project
const {tenseFlow} = require('tenseflow');
or using ES6 Import syntax
import {tenseFlow} from 'tenseflow'
To check for past tense of a word
tenseFlow('come').past;
To check for present tense of a word
tenseFlow('came').root;
`
cloning project Via Github
`
git clone
`
Navigating to cloned project directory
`
cd
`
Installing all required packages
`
NPM Install
`
Starting project server
`
node index.js || nodemon index.js
``