expoIn() — svelte Function Reference
Architecture documentation for the expoIn() function in index.js from the svelte codebase.
Entity Profile
Dependency Diagram
graph TD e9355183_8479_decb_a438_9ba5b69475df["expoIn()"] 8d8f0ca3_5d92_5886_ea4e_cf91e157cffe["index.js"] e9355183_8479_decb_a438_9ba5b69475df -->|defined in| 8d8f0ca3_5d92_5886_ea4e_cf91e157cffe style e9355183_8479_decb_a438_9ba5b69475df fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/svelte/src/easing/index.js lines 174–176
export function expoIn(t) {
return t === 0.0 ? t : Math.pow(2.0, 10.0 * (t - 1.0));
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does expoIn() do?
expoIn() is a function in the svelte codebase, defined in packages/svelte/src/easing/index.js.
Where is expoIn() defined?
expoIn() is defined in packages/svelte/src/easing/index.js at line 174.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free