list_flattener 0.2.0

Parses and flattens lists of integer values
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# list_flattener

Parses and flattens lists of integer values:

`[[[[[[ 0x6 ]]], [[[[[ 0x500 ]]]]], 42_42]]]` -> `[6, 0x500, 4242]`

## Fuzzing

If you found a crash with `make fuzz` you can verify it with this command:

```bash
echo "[[42]" | make run
```