time-parser
v0.2.10
Published
convert strings like 'five days ago' (in english, german, french or portuguese) to an integer (with time in seconds)
Downloads
10
Maintainers
Readme
This package is a fork of parsetime whose author has apparently forgotten about it.
The package did not have a main field in the package.json was just a global script :(
Installation
npm install time-parser --save
Usage
var timeParser = require('time-parser');
timeParser('2 hours ago')
// prints -> Object {absolute: 1441240059031, relative: -7200000, mode: "relative", pb: 8}
All credit goes to the Origin Author.