You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Performs the specified action for each element in an array synchronously.
* @param callback A function that accepts two arguments. ezEach calls the function one time for each element in the array.
*/
Array.prototype.ezEach = function (callback: (value: any, index?: number) => void) { //note to self: using ES6 arrow functions would rip `this` out of it's context