From 2d7bc20d3c71d7ebb4df453d98d8545c8d3ab6b0 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 30 Aug 2025 03:07:12 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/bun.js/api/TOMLObject.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bun.js/api/TOMLObject.zig b/src/bun.js/api/TOMLObject.zig index f264462a02..c7d157ece9 100644 --- a/src/bun.js/api/TOMLObject.zig +++ b/src/bun.js/api/TOMLObject.zig @@ -80,11 +80,11 @@ pub fn stringify( if (value.isUndefined()) { return globalThis.throwInvalidArguments("Cannot stringify undefined value to TOML", .{}); } - + if (value.isNull()) { return globalThis.throwInvalidArguments("Cannot stringify null value to TOML", .{}); } - + if (value.isSymbol() or value.isFunction()) { return .js_undefined; }