Given some atd file in a module `Answer`: ```ml type value = [ | True | False ] <ocaml repr="classic"> type t = { ~mode <ocaml default="False"> : value; } ``` when calling from native: ```ocaml utop # Answer_j.string_of_t {mode = False};; - : string = "{}" ``` but from JavaScript: ```reason $ Answer_bs.write_t({mode: False})->Js.Json.stringify {"mode":"False"} ``` The expected result should be same as native: ```reason $ Answer_bs.write_t({mode: False})->Js.Json.stringify {} ```