1. Reverse Status Mapping
Backend DeveloperBackground
I have a status map where IDs are keys and status names are values, but I need to find the ID based on a status string.
Problem
Manually flipping a large object is error-prone.
How to use
Paste the status object into the input field to instantly generate the inverted map.
{"100": "Pending", "200": "Success", "400": "Error"}Outcome
{"Pending": "100", "Success": "200", "Error": "400"}