diff options
author | 2022-10-24 04:13:11 -0700 | |
---|---|---|
committer | 2022-10-24 04:13:11 -0700 | |
commit | e8d6ad6d66c9594027d944885524863e8a985bc0 (patch) | |
tree | 09d8bc5979a725056f54aa906244bb6d43e714b3 | |
parent | 434f1bffad642855b7e3fa82fd98e80464a5edb7 (diff) | |
download | bun-e8d6ad6d66c9594027d944885524863e8a985bc0.tar.gz bun-e8d6ad6d66c9594027d944885524863e8a985bc0.tar.zst bun-e8d6ad6d66c9594027d944885524863e8a985bc0.zip |
Update README.md
Diffstat (limited to '')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2582,7 +2582,7 @@ console.log(ls); // null import { peek } from "bun"; const promise = Promise.resolve("hi"); -const result = await peek(promise); +const result = peek(promise); console.log(result); // "hi" ``` |