diff options
author | 2023-09-14 19:43:11 -0700 | |
---|---|---|
committer | 2023-09-14 19:43:11 -0700 | |
commit | 308237752a6e508d3f6f502adff7a7943be0c3dc (patch) | |
tree | 19d9db3d1f78a44b8372f52551725f2840166b23 /src/bun.js/bindings/ZigGlobalObject.cpp | |
parent | e8d58f24af4e3e12794894b2419d5cb37960b77e (diff) | |
download | bun-308237752a6e508d3f6f502adff7a7943be0c3dc.tar.gz bun-308237752a6e508d3f6f502adff7a7943be0c3dc.tar.zst bun-308237752a6e508d3f6f502adff7a7943be0c3dc.zip |
v8 date parser tests (#5332)
* Create v8-date-parser.test.js
* one more test
* add permalinks and enable parser in bun
---------
Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
Diffstat (limited to 'src/bun.js/bindings/ZigGlobalObject.cpp')
-rw-r--r-- | src/bun.js/bindings/ZigGlobalObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bun.js/bindings/ZigGlobalObject.cpp b/src/bun.js/bindings/ZigGlobalObject.cpp index 48e95ea4e..f5def93d1 100644 --- a/src/bun.js/bindings/ZigGlobalObject.cpp +++ b/src/bun.js/bindings/ZigGlobalObject.cpp @@ -271,6 +271,7 @@ extern "C" void JSCInitialize(const char* envp[], size_t envc, void (*onCrash)(c JSC::Options::useShadowRealm() = true; JSC::Options::useResizableArrayBuffer() = true; JSC::Options::usePromiseWithResolversMethod() = true; + JSC::Options::useV8DateParser() = true; #ifdef BUN_DEBUG JSC::Options::showPrivateScriptsInStackTraces() = true; |