Quick Note: Parse Update

Heads up! In the latest version of the Deno standard library, the CSV parse function was updated, and the header option was renamed. To get things working again you'll need to replace the following line:

header: true,

With:

skipFirstRow: true,

Otherwise you may see the error:

Object literal may only specify known properties, and 'header' does not exist in type 'ParseOptions'. 

By the way... You may see a note in the Deno documentation saying that bufio.ts is deprecated. This is totally fine! Deno is constantly evolving, but with the latest version of the bufio.ts module, our project will work perfectly.

OK, let's get back to our project!