0.3.0 • Published 1 year ago

@ikasoba000/daizu v0.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year 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

1 year ago

1.0.0-next.2

1 year ago

1.0.0-next

1 year ago

0.3.0

2 years ago

0.2.0

2 years ago

0.1.7

2 years ago

0.1.6

2 years ago

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago