From f45d03265977ccd9bf6ea8275900ca3e32b5b975 Mon Sep 17 00:00:00 2001 From: Amjad Masad Date: Thu, 16 Apr 2015 13:03:20 -0700 Subject: [PATCH] [react-packager] Remove links to internal wiki --- .../haste/polyfills/Array.prototype.es6.js | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/react-packager/src/DependencyResolver/haste/polyfills/Array.prototype.es6.js b/react-packager/src/DependencyResolver/haste/polyfills/Array.prototype.es6.js index 78298a2f..8df5bbcc 100644 --- a/react-packager/src/DependencyResolver/haste/polyfills/Array.prototype.es6.js +++ b/react-packager/src/DependencyResolver/haste/polyfills/Array.prototype.es6.js @@ -23,7 +23,7 @@ get: function() { console.error( 'Your code is broken! Do not iterate over arrays with ' + - 'for...in. See https://fburl.com/31944000 for more information.' + 'for...in.' ); } } @@ -49,9 +49,6 @@ * - Use a regular for loop with index. * - Use one of the array methods: a.forEach, a.map, etc. * - Guard your body of your loop with a `arr.hasOwnProperty(key)` check. - * - * More info: - * https://our.intern.facebook.com/intern/dex/qa/669736606441771/ */ if (this == null) { throw new TypeError( @@ -92,9 +89,6 @@ * - Use a regular for loop with index. * - Use one of the array methods: a.forEach, a.map, etc. * - Guard your body of your loop with a `arr.hasOwnProperty(key)` check. - * - * More info: - * https://our.intern.facebook.com/intern/dex/qa/669736606441771/ */ if (this == null) { throw new TypeError('Array.prototype.find called on null or undefined');