Expand a short year to a full year (15 -> 2015)
npm install expand-year> Expand a short year to a full year (15 -> 2015)
```
$ npm install --save expand-year
`js
var expandYear = require('expand-year');
expandYear(15) // 2015
`
#### expandYear(year, [now]) -> number
##### year
Required
Type: number
The year to expand. A one or two digit number is expected.
##### now
Type: date new Date()`
Default:
The date object from which to calculate the current year.
MIT © Ben Drucker