Executes the given callback a given count of times.
import {executeCount} from '@augment-vir/common';executeCount(5, (count) => console.log(count)); // will log: 1,2,3,4,5 Copy
import {executeCount} from '@augment-vir/common';executeCount(5, (count) => console.log(count)); // will log: 1,2,3,4,5
@augment-vir/common
Executes the given callback a given count of times.