aboutsummaryrefslogtreecommitdiff
path: root/src/js/out/modules/thirdparty/detect-libc.linux.js
diff options
context:
space:
mode:
authorGravatar Ciro Spaciari <ciro.spaciari@gmail.com> 2023-06-18 00:54:50 -0300
committerGravatar GitHub <noreply@github.com> 2023-06-17 20:54:50 -0700
commitb2af1984ed6db162468f3dd8c6d460420d4f4a2e (patch)
tree4d0776e093ba823d79369b5e733fd5be527af900 /src/js/out/modules/thirdparty/detect-libc.linux.js
parent065713aeca2ae3013bdf5b3d2f04263459631598 (diff)
downloadbun-b2af1984ed6db162468f3dd8c6d460420d4f4a2e.tar.gz
bun-b2af1984ed6db162468f3dd8c6d460420d4f4a2e.tar.zst
bun-b2af1984ed6db162468f3dd8c6d460420d4f4a2e.zip
[eventsource] SSE Client (#3074)
* fix flush * remove logs * add HTTP/1.1 eventsource * fix parse spec * multiple data in one event * get lastEventId for reconnection * fix parsing add reconnect * fix reconnection retry * add retry option * move eventsource to builtins * remove duplicate interface on globals.d.ts * move test to TS * fmt * allow no Content-Length or Transfer Encoding * udpate builtins * hardcoded * merge * revert /src/out * updated * Update .gitignore * Make the tests fail * Cleanup EventSource getter * fixup * fixup TS * fmt * update builtins * fix tests * Clear existing timeouts * Add `ref` and `unref` methods * Use `super` to make prototype pollution slightly harder * Reduce test timeout * Regenerate builtins * prettier + ref/unref * Outdated * forgot to commit this --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'src/js/out/modules/thirdparty/detect-libc.linux.js')
-rw-r--r--src/js/out/modules/thirdparty/detect-libc.linux.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/js/out/modules/thirdparty/detect-libc.linux.js b/src/js/out/modules/thirdparty/detect-libc.linux.js
index 1c4e18a7a..987ae9aa6 100644
--- a/src/js/out/modules/thirdparty/detect-libc.linux.js
+++ b/src/js/out/modules/thirdparty/detect-libc.linux.js
@@ -2,13 +2,13 @@ function family() {
return Promise.resolve(familySync());
}
function familySync() {
- return null;
+ return GLIBC;
}
function versionAsync() {
return Promise.resolve(version());
}
function version() {
- return null;
+ return "2.29";
}
function isNonGlibcLinuxSync() {
return !1;