MCPcopy Index your code
hub / github.com/DeepNotesApp/DeepNotes / easeInOutQuint

Function easeInOutQuint

apps/client/src/code/utils/scroll-into-view.ts:13–15  ·  view source on GitHub ↗
(x: number)

Source from the content-addressed store, hash-verified

11}
12
13function easeInOutQuint(x: number): number {
14 return x < 0.5 ? 16 * x * x * x * x * x : 1 - Math.pow(-2 * x + 2, 5) / 2;
15}
16
17export function scrollIntoView(
18 target: Element,

Callers 1

animateFunction · 0.85

Calls 1

powMethod · 0.80

Tested by

no test coverage detected