From 748e7d3e93072f8a46d11a536d1d3106fde49a51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Thu, 10 Jul 2014 17:13:45 -0700 Subject: [PATCH] Update polyfills list in docs [skip ci] Fixes #1744 --- docs/07-working-with-the-browser.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/07-working-with-the-browser.md b/docs/07-working-with-the-browser.md index 5d7b90f3..565d8242 100644 --- a/docs/07-working-with-the-browser.md +++ b/docs/07-working-with-the-browser.md @@ -116,12 +116,15 @@ In addition to that philosophy, we've also taken the stance that we, as authors `es5-shim.js` from [kriskowal's es5-shim](https://github.com/kriskowal/es5-shim) provides the following that React needs: * `Array.isArray` +* `Array.prototype.every` * `Array.prototype.forEach` * `Array.prototype.indexOf` -* `Array.prototype.some` +* `Array.prototype.map` * `Date.now` * `Function.prototype.bind` * `Object.keys` +* `String.prototype.split` +* `String.prototype.trim` `es5-sham.js`, also from [kriskowal's es5-shim](https://github.com/kriskowal/es5-shim), provides the following that React needs: