Test name | Executions per second |
---|---|
fetch | 2681.5 Ops/sec |
import | 40755.2 Ops/sec |
<!--your preparation HTML code goes here-->
let src = URL.createObjectURL(new Blob([`{"a":3,"b":2}`]))
void async function () {
await (await fetch(src)).json()
URL.revokeObjectURL(src)
deferred.resolve()
}()
void async function () {
await import(src, { with: { type: 'json' } })
URL.revokeObjectURL(src)
deferred.resolve()
}()