Is there a JavaScript library which just adds some methods of Array, Object and other standard objects which have been standardized, but that are not available in all browsers? I am thinking of iteration methods in Array
such as filter()
, map()
, reduce()
, some()
, or keys()
in Object
.
Note that I don't want the library to introduce anything fancy; just "standard" methods if they are not yet implemented in the current browser.