Home / Function/ quintInOut() — svelte Function Reference

quintInOut() — svelte Function Reference

Architecture documentation for the quintInOut() function in index.js from the svelte codebase.

Entity Profile

Dependency Diagram

graph TD
  8e0d8b4e_2b41_4a15_914c_3b98ed550441["quintInOut()"]
  8d8f0ca3_5d92_5886_ea4e_cf91e157cffe["index.js"]
  8e0d8b4e_2b41_4a15_914c_3b98ed550441 -->|defined in| 8d8f0ca3_5d92_5886_ea4e_cf91e157cffe
  style 8e0d8b4e_2b41_4a15_914c_3b98ed550441 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/svelte/src/easing/index.js lines 241–244

export function quintInOut(t) {
	if ((t *= 2) < 1) return 0.5 * t * t * t * t * t;
	return 0.5 * ((t -= 2) * t * t * t * t + 2);
}

Subdomains

Frequently Asked Questions

What does quintInOut() do?
quintInOut() is a function in the svelte codebase, defined in packages/svelte/src/easing/index.js.
Where is quintInOut() defined?
quintInOut() is defined in packages/svelte/src/easing/index.js at line 241.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free