git-parse-human2

0.0.1 • Public • Published

git-parse-human2

Parse author and committer names from git commit data.

var human = require('git-parse-human2');
var committer = 'Chris Dickinson <christopher.s.dickinson@gmail.com> 1363906748 -0700';
 
console.log(human(committer));
// outputs the following:
/*
{
  name: 'Chris Dickinson',
  email: 'christopher.s.dickinson@gmail.com',
  timestamp: 1363906748,
  timezone: '-0700'
}
*/

API

human(str) -> result object | null

Parse a human, returning an object with their name, their email, the commit timestamp in seconds and the commit timezone offset.

License

MIT

Package Sidebar

Install

npm i git-parse-human2

Weekly Downloads

88

Version

0.0.1

License

MIT

Last publish

Collaborators

  • alessioalex