File "nextTick.ts"

Full path: /home/fsibplc/public_html/sommilito-bank2/splide-4.1.3/src/js/utils/function/nextTick/nextTick.ts
File size: 239 B (239 B bytes)
MIME-type: text/x-java
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

import { AnyFunction } from '../../../types';


/**
 * Invokes the callback on the next tick.
 *
 * @param callback - A callback function.
 */
export const nextTick: ( callback: AnyFunction ) => ReturnType<typeof setTimeout> = setTimeout;