(ctx: &Ctx<'js>, value: Value<'js>)
| 29 | |
| 30 | #[allow(dead_code)] |
| 31 | pub fn json_stringify<'js>(ctx: &Ctx<'js>, value: Value<'js>) -> Result<Option<String>> { |
| 32 | json_stringify_replacer_space(ctx, value, None, None) |
| 33 | } |
| 34 | |
| 35 | #[allow(dead_code)] |
| 36 | pub fn json_stringify_replacer<'js>( |
no test coverage detected