From 456a5fe30d0da5a61601001fc4ce6477f1d6169c Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Wed, 24 Jul 2024 12:33:39 -0700 Subject: [PATCH] docs: mention addition of web-streams-polyfill for react-native (#6302) --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e61e443390d9..e58ad9508c81 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"; ```