deno-fnparse icon indicating copy to clipboard operation
deno-fnparse copied to clipboard

An extremely simple parser combinator for Deno.

deno-fnparse

Build Status

A port of fnparse.js to TypeScript for Deno.

An extremely simple parser combinator for JavaScript.

CSV Parser

  • Based on RFC4180.
  • Multiline and escape support.
import { parseCsv } from "https://denopkg.com/hashrock/deno-fnparse/parsers/csv.ts";

parseCsv("test,123,456");
// -> [["test", "123", "456"]]

Original License

The MIT License (MIT)

Copyright © 2014, Mitsunori KUBOTA [email protected]

Ported by hashrock