Hello everyone
I would be very happy to help
I’m trying to understand how I take the string at the bottom of the passport and insert it correctly into the variable return the decoding of the data (name, date of birth, sex, etc.)
this is a code
const parse = require(‘mrz’).parse;
let mrz = [
‘I<fefeg23145890<1233<<<<<<<<<<<’,
‘7408122tuy204159UTO<<<<<<<<<<<6’,
‘uyuyuy<<AyuNA<MyuyuIA<<<<<<<<<<’,
];
var result = parse(mrz);
console.log(result);
i asjed about let mrz=“…”
i have a string
how to dvide for lines?
thank you!!!