8000 GitHub - MCluck90/parsnip-ts: Parser combinators built in, and for, TypeScript
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

MCluck90/parsnip-ts

Repository files navigation

🌱 Parsnip-ts

Parser combinators written in and for TypeScript.

Getting Started

Installation

npm install parsnip-ts

Example

import { list, text } from 'parsnip-ts'
import { integer } from 'parsnip-ts/numbers'
import { ws } from 'parsnip-ts/whitespace'

const array = text('[')
  .and(list(integer, ws.and(text(',').and(ws)))
  .bind(integers =>
    text(']').map(() => integers)
  )

array.parseToEnd('[1, 2, 3]') // [1, 2, 3]

For a more thorough example, check out the examples folder.

0