blob: 82c344f9593f9ca2e1244d2c0a202590996de4d1 [file] [log] [blame] [edit]
const map = new Map();
for (let i = 0; i < 1000; i++) {
map.set(`key${i}`, i);
}
function test(map) {
const arr = Array.from(map.values());
return arr;
}
noInline(test);
for (let i = 0; i < 1e4; i++) {
test(map);
}