diff options
author | 2022-01-28 23:56:45 -0800 | |
---|---|---|
committer | 2022-01-28 23:56:45 -0800 | |
commit | bf4943eec152ca1617db9c004f19fa5c27aa4b82 (patch) | |
tree | a59d793b36a9c28c2ccf7f74c61f48a5502bbcc1 /src/api/schema.zig | |
parent | 97d17904d3f6b850e8973b84d6b4ad5e22afb941 (diff) | |
download | bun-bf4943eec152ca1617db9c004f19fa5c27aa4b82.tar.gz bun-bf4943eec152ca1617db9c004f19fa5c27aa4b82.tar.zst bun-bf4943eec152ca1617db9c004f19fa5c27aa4b82.zip |
Implement TOML parser
No Date/DateTime/Time/Local Time yet
Diffstat (limited to '')
-rw-r--r-- | src/api/schema.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/api/schema.zig b/src/api/schema.zig index 4bca9cd1f..8f21c350c 100644 --- a/src/api/schema.zig +++ b/src/api/schema.zig @@ -353,6 +353,9 @@ pub const Api = struct { /// json json, + /// toml + toml, + _, pub fn jsonStringify(self: *const @This(), opts: anytype, o: anytype) !void { |