Line 28 is:
[Array] $output = foreach ($row in $table.Rows | Select-Object -Skip 0) {
But should be:
[Array] $output = foreach ($row in $table.Rows | Select-Object -Skip 1) {
I didn't catch that until I got it loaded and started testing for the project I needed it on. I'll submit a PR shortly with the fix.