Preparation Code Preparation HTML (this will be inserted in the <body>
of a valid HTML5 document in standards mode) (useful when testing DOM operations or including libraries)
Setup JS let arr = new Array (10000 )
for (let i = 0 ; i < 10000 ; i++) {
arr[i] = ['key' + i, 'value' + i]
}
let map = new Map (arr)
const support = {
ARRAY_BUFFER_SUPPORT : typeof ArrayBuffer !== 'undefined' ,
SYMBOL_SUPPORT : typeof Symbol !== 'undefined'
}
var ARRAY_BUFFER_SUPPORT = support.ARRAY_BUFFER_SUPPORT ;
var SYMBOL_SUPPORT = support.SYMBOL_SUPPORT ;
function forEach (iterable, callback ) {
var iterator, k, i, l, s;
if (!iterable) throw new Error ('obliterator/forEach: invalid iterable.' );
if (typeof callback !== 'function' )
throw new Error ('obliterator/forEach: expecting a callback.' );
if (
Array .isArray (iterable) ||
(ARRAY_BUFFER_SUPPORT && ArrayBuffer .isView (iterable)) ||
typeof iterable === 'string' ||
iterable.toString () === '[object Arguments]'
) {
for (i = 0 , l = iterable.length ; i < l; i++) callback (iterable[i], i);
return ;
}
if (typeof iterable.forEach === 'function' ) {
iterable.forEach (callback);
return ;
}
if (
SYMBOL_SUPPORT &&
Symbol .iterator in iterable &&
typeof iterable.next !== 'function'
) {
iterable = iterable[Symbol .iterator ]();
}
if (typeof iterable.next === 'function' ) {
iterator = iterable;
i = 0 ;
while (((s = iterator.next ()), s.done !== true )) {
callback (s.value , i);
i++;
}
return ;
}
for (k in iterable) {
if (iterable.hasOwnProperty (k)) {
callback (iterable[k], k);
}
}
return ;
};
Teardown JS