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.

14 lines 277 B
/** * @module Utilities */ /** * @internal */ export function withJitter(args) { const { jitter, value, randomValue } = args; if (jitter !== null) { return (1 - jitter * randomValue) * value; } return value; } //# sourceMappingURL=with-jitter.js.map