From 3139e122b392bd5422bf7125c0a3aa2e9ca38101 Mon Sep 17 00:00:00 2001 From: "Kamat, Trivikram" <16024985+trivikr@users.noreply.github.com> Date: Tue, 23 Jul 2024 23:20:38 +0000 Subject: [PATCH] docs: mention addition of web-streams-polyfill for react-native --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e61e443390d91..e58ad9508c819 100644 --- a/README.md +++ b/README.md @@ -103,10 +103,13 @@ to add and import following polyfills in your react-native application: - [react-native-get-random-values](https://www.npmjs.com/package/react-native-get-random-values) - [react-native-url-polyfill](https://www.npmjs.com/package/react-native-url-polyfill) +- [web-streams-polyfill](https://www.npmjs.com/package/web-streams-polyfill) ```js import "react-native-get-random-values"; import "react-native-url-polyfill/auto"; +import "web-streams-polyfill/dist/polyfill"; + import { DynamoDB } from "@aws-sdk/client-dynamodb"; ```