JavaScript generic ASN.1 parser (mirror)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix lint error.

+2 -1
+2 -1
dumpASN1.js
··· 58 58 console.log('Parsed in ' + (t1 - t0).toFixed(2) + ' ms; possible types:'); 59 59 for (const t of types) 60 60 console.log((t.match * 100).toFixed(2).padStart(6) + '% ' + t.type.description); 61 - const stats = Defs.match(result, types[0].type); 61 + Defs.match(result, types[0].type); 62 + // const stats = Defs.match(result, types[0].type); 62 63 // console.log('Stats:', stats); 63 64 console.log('Parsed as:', result.def); 64 65 // const type = searchType(process.argv[2]);