Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This makes promises & async take two ticks instead of three ticks. See tc39/ecma262#1250 See tc39/ecma262#2770 See tc39/ecma262#2772 50% faster when measuring call overhead. Similar improvements for https://github.com/v8/promise-performance-tests and when measuring with the following snippet: ```js import { run, bench } from "mitata"; bench("sync", () => {}); bench("async", async () => {}); run(); ```
- Loading branch information