diff options
author | 2022-07-06 18:44:38 +0800 | |
---|---|---|
committer | 2022-07-06 04:06:51 -0700 | |
commit | a22b333f2a93019498f766d44fbfd7f85a415113 (patch) | |
tree | 483f08a43892a531e2238561543cc1418dc3d500 | |
parent | 636e71d54edcf21e4f0ce2623ed227b9aa7d43f1 (diff) | |
download | bun-a22b333f2a93019498f766d44fbfd7f85a415113.tar.gz bun-a22b333f2a93019498f766d44fbfd7f85a415113.tar.zst bun-a22b333f2a93019498f766d44fbfd7f85a415113.zip |
Fix `Safari's implementation` broken link
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -185,7 +185,7 @@ bun.js prefers Web API compatibility instead of designing new APIs when possible - `.env` files automatically load into `process.env` and `Bun.env` - top level await -The runtime uses JavaScriptCore, the JavaScript engine powering WebKit and Safari. Some web APIs like [`Headers`](https://developer.mozilla.org/en-US/docs/Web/API/Headers) and [`URL`](https://developer.mozilla.org/en-US/docs/Web/API/URL) directly use [Safari's implementation](https://github.com/Jarred-Sumner/bun/blob/e0011fd6baf2fe2b12d1b2a909981da1a183cdad/src/bun.js/bindings/webcore/JSFetchHeaders.cpp#L1). +The runtime uses JavaScriptCore, the JavaScript engine powering WebKit and Safari. Some web APIs like [`Headers`](https://developer.mozilla.org/en-US/docs/Web/API/Headers) and [`URL`](https://developer.mozilla.org/en-US/docs/Web/API/URL) directly use [Safari's implementation](https://github.com/Jarred-Sumner/bun/blob/HEAD/src/bun.js/bindings/webcore/JSFetchHeaders.cpp). `cat` clone that runs [2x faster than GNU cat](https://twitter.com/jarredsumner/status/1511707890708586496) for large files on Linux |