File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
firestore/src/platform/node_lite
storage/src/platform/node Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ ' @firebase/firestore ' : patch
3+ ' @firebase/storage ' : patch
4+ ---
5+
6+ Addressed incorrect use of the ` node-fetch ` polyfill
Original file line number Diff line number Diff line change 1515 * limitations under the License.
1616 */
1717
18- import * as nodeFetch from 'node-fetch' ;
18+ import nodeFetch from 'node-fetch' ;
1919
2020import { DatabaseInfo } from '../../core/database_info' ;
2121import { Connection } from '../../remote/connection' ;
Original file line number Diff line number Diff line change 1717
1818import { ErrorCode , Connection } from '../../implementation/connection' ;
1919import { internalError } from '../../implementation/error' ;
20- import * as nodeFetch from 'node-fetch' ;
20+ import nodeFetch from 'node-fetch' ;
2121
2222// eslint-disable-next-line @typescript-eslint/no-explicit-any
2323const fetch : typeof window . fetch = nodeFetch as any ;
You can’t perform that action at this time.
0 commit comments