Created
April 29, 2010 19:28
-
-
Save dshaw/384098 to your computer and use it in GitHub Desktop.
Array.prototype.forEach implementation in TWTR widget.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// from http://twitter.com/javascripts/widgets/widget.js | |
if(!Array.forEach){Array.prototype.forEach=function(D,E){var C=E||window;for(var B=0,A=this.length;B<A;++B){D.call(C,this[B],B,this)}}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment