mirror of
https://github.com/nushell/nushell.git
synced 2025-05-28 22:07:40 +02:00
Fix and Allow Number and Boolean type to be key in Yaml . For example : `"200 : " | from yaml` not allowed because of Number key type. PR allow , we can use Boolean and Number for key. For example : `"true : false" | from yaml` `"5050 : it is number" | from yaml` Fixes #7222 .