Test name | Executions per second |
---|---|
from blob | 12362.1 Ops/sec |
from native | 47125.6 Ops/sec |
(async () => {
const blob = await (await fetch('https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png')).blob();
const img = new Image();
img.src = URL.createObjectURL(blob);
return img;
})();
const img = new Image();
img.src = 'https://www.google.com/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png';