We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1165e56 commit c876d7eCopy full SHA for c876d7e
packages/storage/src/implementation/type.ts
@@ -40,7 +40,7 @@ export function isNativeBlob(p: unknown): p is Blob {
40
}
41
42
export function isNativeBlobDefined(): boolean {
43
- // Note: The `isNode()` check can be removed when `ts-node` adds native Blob support
+ // Note: The `isNode()` check can be removed when `node-fetch` adds native Blob support
44
// PR: https://github.com/node-fetch/node-fetch/pull/1664
45
return typeof Blob !== 'undefined' && !isNode();
46
0 commit comments