gdpr-age-of-majority
v1.0.3
Published
EU GDPR age of majority / consent validator
Downloads
8
Readme
About GDPR-AgeOfMajority
Validate whether an individual is an adult according to GDPR (eu rules).
Install
npm install gdpr-age-of-majority --save
Usage
'use strict';
const AgeOfMajority = require('gdpr-age-of-majority'); //Import validation function.
const birthDate = '1967-05-01'; //Sample birth date
const countryCode = 'IT'; //Italy
console.log(`Is adult: ${AgeOfMajority.isAdult(birthDate, countryCode)}`);