JavaScript's JSON.parse doesn't lose precision from my tests. Test case below: ``` rust #[test] fn large_precision() { assert_eq!(parse("0.004750000000000001").unwrap().as_f64().unwrap(), 0.004750000000000001); } ```