UNPKG

@fnlb-project/stanza

Version:

Modern XMPP in the browser, with a JSON API

9 lines (8 loc) 277 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.nextTick = void 0; /* eslint-disable @typescript-eslint/ban-types */ function nextTick(callback, ...args) { queueMicrotask(() => callback(...args)); } exports.nextTick = nextTick;