Parse dates in all the formats humans like to use:
- today/tomorrow/yesterday
- next/this/last Wednesday
- 12th January
- 12th January 1950
- 09-08-2008
- 2008-08-09
Return dates in just the format that computers should use:
- 2008-08-09
$ npm install dehumanize-date
A simple function which takes a string as an argument and returns a string in the form yyyy-mm-dd
.
var date = dehumanizeDate(userInput);
If you want to use US formats for numerical dates you should pass true
as the second parameter:
var date = dehumanizeDate(userInput, true);
MIT