Would it be possible to add an option to make paths in array format instead of dot format
Some form item libraries e.g Antd use arrays of strings/ number to denote the path, essentially splitting them by the "." that separates them.
type Obj = {
a: {
b: {
e: string;
};
c: {
d: ['foo'];
};
};
};
// Current feature
a.c.d[0]
a.c.d.0
// New Feature - array notation
["a", "c", "d", 0]
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too