File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/storage/src/implementation Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { isNodeSdk } from '@firebase/util' ;
18
+ import { isNode } from '@firebase/util' ;
19
19
import { invalidArgument } from './error' ;
20
20
21
21
export function isJustDef < T > ( p : T | null | undefined ) : p is T | null {
@@ -42,7 +42,7 @@ export function isNativeBlob(p: unknown): p is Blob {
42
42
export function isNativeBlobDefined ( ) : boolean {
43
43
// Note: The `isNodeSdk()` check can be removed when `ts-node` adds native Blob support
44
44
// PR: https://github.com/node-fetch/node-fetch/pull/1664
45
- return typeof Blob !== 'undefined' && ! isNodeSdk ( ) ;
45
+ return typeof Blob !== 'undefined' && ! isNode ( ) ;
46
46
}
47
47
48
48
export function validateNumber (
You can’t perform that action at this time.
0 commit comments