Skip to main content

Every

A timer that executes a callback at specified intervals.

Factory Functions

every(interval: number, callback: EveryCallback): EveryTimer

Examples

import {every} from '@wangyaoshen/locus';

every(1, () => {
console.log('Executed every second');
});