anonghuser
anonghuser
the example you've given is not a symbol, it is a symbol surrounded by zero-width-joiner codepoints the specific combinations you build with it may or may not be valid/defined by...
try and select them one by one in the browser. in mine, i can't. i have three parts i can select.
We want it without the "temporary" part.
The setting name made me think I'd need to set it again and again on each browser restart. If it was referring to something else, i.e. "temporarily trusted" vs "trusted",...
There is no support for async functions yet. See https://github.com/bestiejs/benchmark.js/issues/176 and https://github.com/bestiejs/benchmark.js/issues/176#issuecomment-1815825325 for my workaround.
Here is a small subclass that auto deferredifies async function benchmarks: ``` AsyncSuite.AsyncFunction = (async function() {}).constructor Object.setPrototypeOf(AsyncSuite.prototype, Benchmark.Suite.prototype) function AsyncSuite() { 'use strict' const suite = (!new.target && this...
@Uzlopak The `delay` option is applied before the whole benchmark, not between its iterations, and is not included in the measured timings so does not affect the result. There is...
Given the mutable nature of the `Headers` object, it may be possible to support trailers without any new APIs. Considering trailers are just delayed headers, would adding them to `Response.headers`...
no need for any timers to get a reproduction, even just this simple code hangs: ``` import deasync from 'deasync' const test = deasync(function(r, cb) { Promise.resolve().then(()=>cb(null, r)) }) console.log(1)...
After trying out some stuff I guess it is for proper sandboxing while still having a non-null origin and thus access to localStorage and similar. But now that I understand...