diff options
author | 2023-03-08 00:18:14 -0800 | |
---|---|---|
committer | 2023-03-08 00:18:14 -0800 | |
commit | f22336b5b5fe48035d277acb658c41c2fb5d9e8d (patch) | |
tree | bfc2a7f0c75e41a7c58f2518244aad49e27bacb1 /src/bun.js/bindings/headers.h | |
parent | e16053c39ed18fb7024159d7e8bc58e5120bbf34 (diff) | |
download | bun-f22336b5b5fe48035d277acb658c41c2fb5d9e8d.tar.gz bun-f22336b5b5fe48035d277acb658c41c2fb5d9e8d.tar.zst bun-f22336b5b5fe48035d277acb658c41c2fb5d9e8d.zip |
More spec compliant `Blob.prototype.type` (#2340)
* Make `Blob.prototype. type` more spec compliant
* Add a few more checks for isNumber()
* Fix `make headers`
* Safer JSValue.isString()
* More tests for blob.slice
* Make `Blob.prototype.type` more spec compliant
* Add isASCII check
* Fix types
* Fix failing type test
* Update blob.zig
* Update blob.zig
* Fix .eql check on empty values
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/bun.js/bindings/headers.h')
-rw-r--r-- | src/bun.js/bindings/headers.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bun.js/bindings/headers.h b/src/bun.js/bindings/headers.h index 422a71a70..20b7fbedb 100644 --- a/src/bun.js/bindings/headers.h +++ b/src/bun.js/bindings/headers.h @@ -1,5 +1,5 @@ // clang-format off -//-- AUTOGENERATED FILE -- 1677776166 +//-- AUTOGENERATED FILE -- 1678254453 #pragma once #include <stddef.h> @@ -331,7 +331,6 @@ CPP_DECL bool JSC__JSValue__isNumber(JSC__JSValue JSValue0); CPP_DECL bool JSC__JSValue__isObject(JSC__JSValue JSValue0); CPP_DECL bool JSC__JSValue__isPrimitive(JSC__JSValue JSValue0); CPP_DECL bool JSC__JSValue__isSameValue(JSC__JSValue JSValue0, JSC__JSValue JSValue1, JSC__JSGlobalObject* arg2); -CPP_DECL bool JSC__JSValue__isString(JSC__JSValue JSValue0); CPP_DECL bool JSC__JSValue__isSymbol(JSC__JSValue JSValue0); CPP_DECL bool JSC__JSValue__isTerminationException(JSC__JSValue JSValue0, JSC__VM* arg1); CPP_DECL bool JSC__JSValue__isUInt32AsAnyInt(JSC__JSValue JSValue0); |