Home / Function/ expoOut() — svelte Function Reference

expoOut() — svelte Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

packages/svelte/src/easing/index.js lines 182–184

export function expoOut(t) {
	return t === 1.0 ? t : 1.0 - Math.pow(2.0, -10.0 * t);
}

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free