parse author and committer names from git commit data.
var human = require('git-parse-human')
, committer = 'Chris Dickinson <[email protected]> 1363906748 -0700'
human(committer) // {name, email, time, tzoff}
parse a human, returning an object with their name, their email, the commit timestamp in MS and the commit timezone offset in MS.
MIT