(
ctx: &Ctx<'js>,
value: Value<'js>,
replacer: Option<Value<'js>>,
)
| 34 | |
| 35 | #[allow(dead_code)] |
| 36 | pub fn json_stringify_replacer<'js>( |
| 37 | ctx: &Ctx<'js>, |
| 38 | value: Value<'js>, |
| 39 | replacer: Option<Value<'js>>, |
| 40 | ) -> Result<Option<String>> { |
| 41 | json_stringify_replacer_space(ctx, value, replacer, None) |
| 42 | } |
| 43 | |
| 44 | pub fn json_stringify_replacer_space<'js>( |
| 45 | ctx: &Ctx<'js>, |
nothing calls this directly
no test coverage detected