Skip to main content
Module

x/adka/deno.d.ts>queueMicrotask

SSG & SSR: Static site generator and server side rendering using JSX.
Latest
function queueMicrotask
import { queueMicrotask } from "https://deno.land/x/adka@0.1.5/deno.d.ts";

A microtask is a short function which is executed after the function or module which created it exits and only if the JavaScript execution stack is empty, but before returning control to the event loop being used to drive the script's execution environment. This event loop may be either the main event loop or the event loop driving a web worker.

queueMicrotask(() => { console.log('This event loop stack is complete'); });