UNPKG

covid-certificate

Version:

Parse and verify a european digital covid certificate (dcc)

11 lines (10 loc) 273 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.strip_header = void 0; const strip_header = (data) => { if (data.startsWith("HC1:")) { data = data.substring(4); } return data; }; exports.strip_header = strip_header;