Use JSC::Integrity:: auditCellFully in bindings (#22538)

### What does this PR do?

### How did you verify your code works?
This commit is contained in:
Jarred Sumner
2025-09-10 00:31:54 -07:00
committed by GitHub
parent 6611983038
commit e1505b7143
82 changed files with 201 additions and 21 deletions

View File

@@ -352,7 +352,7 @@ pub fn stopTimers(this: *@This()) void {
}
pub fn getQueriesArray(this: *const @This()) JSValue {
return js.queriesGetCached(this.js_value) orelse .zero;
return js.queriesGetCached(this.js_value) orelse .js_undefined;
}
pub fn failFmt(this: *@This(), error_code: AnyMySQLError.Error, comptime fmt: [:0]const u8, args: anytype) void {
const message = bun.handleOom(std.fmt.allocPrint(bun.default_allocator, fmt, args));