a node module to parse natural language reminders into who, what, and when.
It aims to support all common forms of natural language for reminders. For example:
var parseReminder = require('parse-reminder')
console.log(parseReminder('remind me to call the doctor tomorrow'))
// Output:
// { who: 'me',
// what: 'call the doctor',
// when: 2017-09-12T12:00:00.000Z }