Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
13
function
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
17
export
function
scrollIntoView(
18
target: Element,
Callers
1
animate
Function · 0.85
Calls
1
pow
Method · 0.80
Tested by
no test coverage detected