blob: 0fc40a701aba269913dce126b9e9b17f31d72680 (
plain)
1
2
3
4
5
6
|
const std = @import("std");
const Value = @import("./value.zig").Value;
pub fn stringify(allocator: std.mem.Allocator, value: Value) ![]u8 {
return try std.json.Stringify.valueAlloc(allocator, value._internal, .{ .whitespace = .indent_2 });
}
|