Releases: xcarol/infobox-parser
Releases · xcarol/infobox-parser
Unhandled TypeError with empty or malformed hlist
The page with id: 8239846 has an empty or malformed hlist which throws a "TypeError: Invalid attempt to destructure non-iterable instance" exception.
the destructure in the parse method of hlist
let [, elements] = results;
assumes results to have content.
Here this condition is checked before, and if so, it returns an empty array.