parsley 0.0.5 copy "parsley: ^0.0.5" to clipboard
parsley: ^0.0.5 copied to clipboard

outdated

A simple but powerful parsing engine

parsley #

Is your domain logic littered with parsing?

Parsley is a simple but powerful parsing engine that uses inferences to automatically find the correct parser for the required input / output.

Getting Started #

Simply import the package into your project and forget about parsing forever!

You can also register your own custom parsers using parsley.registerParser(<your_function>) function.

Example #

int five = parse("5");

bool textToBool = parse("true") // = true

int stringToInt = parse("5"); // = 5

String intToString = parse(5); // = "5"

bool intToBool = parse(1); // = true

List

4
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A simple but powerful parsing engine

Homepage

License

unknown (LICENSE)

More

Packages that depend on parsley