mirror of
https://github.com/withastro/astro.git
synced 2025-03-31 23:31:30 -05:00
fix: better isPromise check for proxy objects (#11178)
This commit is contained in:
parent
3cfa2ac7e5
commit
1734c49f51
2 changed files with 6 additions and 1 deletions
5
.changeset/green-moose-fetch.md
Normal file
5
.changeset/green-moose-fetch.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'astro': patch
|
||||
---
|
||||
|
||||
Improves `isPromise` utility to check the presence of `then` on an object before trying to access it - which can cause undesired side-effects on Proxy objects
|
|
@ -1,5 +1,5 @@
|
|||
export function isPromise<T = any>(value: any): value is Promise<T> {
|
||||
return !!value && typeof value === 'object' && typeof value.then === 'function';
|
||||
return !!value && typeof value === 'object' && 'then' in value && typeof value.then === 'function';
|
||||
}
|
||||
|
||||
export async function* streamAsyncIterator(stream: ReadableStream) {
|
||||
|
|
Loading…
Add table
Reference in a new issue