Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Nov 1, 2024
1 parent bebc00a commit d533534
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
7 changes: 4 additions & 3 deletions DOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -12380,9 +12380,10 @@ const f3 = fetch(2);
console.log(f1 === f2); // -> true
console.log(f1 === f3); // -> false

await f1;
const f4 = fetch(1);
console.log(f1 === f4); // -> false
f1.then(() => {
const f4 = fetch(1);
console.log(f1 === f4); // -> false
});
```

## size
Expand Down
7 changes: 4 additions & 3 deletions DOC_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -12371,9 +12371,10 @@ const f3 = fetch(2);
console.log(f1 === f2); // -> true
console.log(f1 === f3); // -> false

await f1;
const f4 = fetch(1);
console.log(f1 === f4); // -> false
f1.then(() => {
const f4 = fetch(1);
console.log(f1 === f4); // -> false
});
```

## size
Expand Down
7 changes: 4 additions & 3 deletions src/singleton.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@
* console.log(f1 === f2); // -> true
* console.log(f1 === f3); // -> false
*
* await f1;
* const f4 = fetch(1);
* console.log(f1 === f4); // -> false
* f1.then(() => {
* const f4 = fetch(1);
* console.log(f1 === f4); // -> false
* });
*/

/* module
Expand Down

0 comments on commit d533534

Please sign in to comment.