Option for 1-indexed arrays
Closed this issue · 4 comments
CarlosNZ commented
Rather than the standard 0-based numbering
PrimoUomo89 commented
@CarlosNZ I want to help out a bit with this issue to get me more familiar with the repo. Can you give me an idea of what you're imagining in terms of implementation?
CarlosNZ commented
I just meant that instead of displaying:
Array: [
0: "My Value"
1: "Another Value"
2: "This"
]
It would show:
Array: [
1: "My Value"
2: "Another Value"
3: "This"
]
But only if the prop was set.
I think it should be quite simple to implement, so feel free to have a crack.