Calculate the age in years for a birth date
npm install get-ageget-age calculates the age in years for a given birth date
$ npm install --save get-age
Usage
`js
var getAge = require('get-age')getAge('1990-01-09')
// => 25
`API
####
getAge(dateString) -> number##### dateString
Required
Type:
dateThe birth date that you'd like to get the age of in iso format
YYYY-MM-DD`