0.3.0 • Published 4 months ago

@ikasoba000/daizu v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

installation

pnpm i @ikasoba000/daizu

Hello, world!

import { parse, string, charRange, many1, map } from "@ikasoba000/daizu";

const helloWorld = string("Hello, world!");

parse("Hello, world!", helloWorld); // "Hello, world!"

const digits = many1(charRange("0", "9"));

parse("0123", digits); // "0", "1", "2", "3"

const integer = map(digits, x => parseInt(x.join("")));

parse("100", integer); // 100
1.0.0-next.1

4 months ago

1.0.0-next.2

4 months ago

1.0.0-next

4 months ago

0.3.0

9 months ago

0.2.0

9 months ago

0.1.7

10 months ago

0.1.6

10 months ago

0.1.5

10 months ago

0.1.4

10 months ago

0.1.3

10 months ago

0.1.2

10 months ago

0.1.1

10 months ago