Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- export default function checkCode(code) {
- if(code.length !== 17) return false;
- if(code.slice(0, 2).toLowerCase() !== 'af') return false;
- if(/^\d+$/.test(cr_code.slice(2)) !== true) return false;
- const datePart = code.slice(2, 10);
- const ISO_DATE = datePart.substring(0, 4) + '-' + datePart.substring(4, 6) + '-' + datePart.substring(6);
- if(typeof(Date.parse(ISO_DATE)) != 'number') return false;
- return true;
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement