Configuration
- Rows — ordered mapping rules. Each row has a regex pattern, an output value, and the type the output should be cast to.
- Fallback row — used when no row matches. Without one, unmatched inputs produce nothing.
Tips
- Rules are tried in order — put more specific patterns above broader catch-alls.
- Inputs are stringified before matching, so number and date inputs work
too. Use
^...$anchors when you want exact matches.