UNPKG

cesletter

Version:

Provides the Letter to a CES Director in a variety of useful formats

10 lines (9 loc) 163 B
export default function forEachAll( anArray, callback, scope ) { for (let i = 0; i < anArray.length; i++) { callback.call(scope, i, anArray[i]); } }