UNPKG

@daiso-tech/core

Version:

The library offers flexible, framework-agnostic solutions for modern web applications, built on adaptable components that integrate seamlessly with popular frameworks like Next Js.

11 lines 235 B
/** * @module Async */ // (attempt: number, error: unknown) => number; /** * @internal */ export function withJitter(jitter, value, mathRandom) { return (1 - jitter * mathRandom()) * value; } //# sourceMappingURL=_shared.js.map