2021-10-06 11:29:09 +00:00
## About
This repository creates a react webpage that allows to extract a utility function from possibly inconsistent binary comparisons
2021-06-07 17:09:30 +00:00
## Object structure
2021-11-25 10:45:35 +00:00
The core structure is json array of objects. Only the "name" attribute is required; the (numerical) id is also internally required but it's created on the fly. The reason that ids are needed is that comparing objects is annoying.
2021-10-06 12:14:18 +00:00
The `isReferenceValue` property determines the display at the end, but it is optional.
2021-10-06 11:29:09 +00:00
2021-06-06 21:14:05 +00:00
```
2021-06-07 17:09:30 +00:00
[
{
"id": 1,
"name": "Peter Parker",
"someOptionalKey": "...",
2021-10-06 11:29:09 +00:00
"anotherMoreOptionalKey": "...",
"isReferenceValue": true
2021-06-07 17:09:30 +00:00
},
{
"id": 2,
"name": "Spiderman",
"someOptionalKey": "...",
"anotherMoreOptionalKey": "..."
}
]
```