[Bun.js] Implement HTMLRewriter

https://developers.cloudflare.com/workers/runtime-apis/html-rewriter
This commit is contained in:
Jarred Sumner
2022-03-12 01:14:45 -08:00
parent 64f1af0aa6
commit d6831cf801
21 changed files with 2250 additions and 150 deletions

View File

@@ -1301,7 +1301,7 @@ pub const Bun = struct {
Timer.set(id, globalThis, callback, countdown, false) catch
return JSValue.jsUndefined();
return JSValue.jsNumber(@intCast(i32, id));
return JSValue.jsNumberWithType(i32, id);
}
pub fn setInterval(
globalThis: *JSGlobalObject,
@@ -1315,7 +1315,7 @@ pub const Bun = struct {
Timer.set(id, globalThis, callback, countdown, true) catch
return JSValue.jsUndefined();
return JSValue.jsNumber(@intCast(i32, id));
return JSValue.jsNumberWithType(i32, id);
}
pub fn clearTimer(id: JSValue, _: *JSGlobalObject) void {