Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

tensify

boo1ean236MIT0.0.4

Convert verbs from present to past tense

verbs, past, present, tense, tenses, inflector, inflect

readme

tensify Build Status

Get different tense of verb

Installation

npm install tensify

Usage

var tensify = require('tensify');

// 'did'
tensify('do').past;

// 'done'
tensify('do').past_participle;

// 'did'
tensify('done').past;

// 'made'
tensify('make').past;

// 'committed'
tensify('commit').past;

// 'mimicked'
tensify('mimic').past;

// And so on..

Actually it could fail sometimes... :D

License

MIT