Age package provides functionality to generate a fake age value.
npm install @fakerjs/age
Age package provides functionality to generate a fake age value.
```
$ npm install --save @fakerjs/age
`js
import age from '@fakerjs/age';
age();
//=> 42
age({type: 'child'});
//=> 10
// Allowed type: child, teen, adult, senior
`
Run tests
```
npm run test