Fix up dirty JSON string
dirty-json
allows numberic object keys.
rust
fn main() {
let json = r#"{1: "foo", 2 : "bar"}"#;
let fixed = dirty_json::fix(json);
assert_eq!(fixed, r#"{"1":"foo","2":"bar"}"#);
}
This work is released under the MIT license. A copy of the license is provided in the LICENSE file.