We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e15706f commit 1165e56Copy full SHA for 1165e56
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 `isNodeSdk()` check can be removed when `ts-node` adds native Blob support
+ // Note: The `isNode()` check can be removed when `ts-node` 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