first-commit-date

Returns a JavaScript date object with the date and time of a git repository's first commit.
Install
Install with npm
$ npm i first-commit-date --save
Usage
var firstCommitDate = require('first-commit-date');
firstCommitDate(function(err, date) {
if (err) return console.log(err);
console.log('first commit!', date);
});
Related projects
Running tests
Install dev dependencies:
$ npm i -d && npm test
Contributing
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Author
Jon Schlinkert
License
Copyright © 2015 Jon Schlinkert
Released under the MIT license.
This file was generated by verb-cli on November 22, 2015.