Home / Function/ bind_prop() — svelte Function Reference

bind_prop() — svelte Function Reference

Architecture documentation for the bind_prop() function in props.js from the svelte codebase.

Entity Profile

Dependency Diagram

graph TD
  74a692c5_5fbf_7746_e49c_48a5484606a6["bind_prop()"]
  2bd13401_d37c_cb90_2161_eedf0d33a0c9["props.js"]
  74a692c5_5fbf_7746_e49c_48a5484606a6 -->|defined in| 2bd13401_d37c_cb90_2161_eedf0d33a0c9
  20340432_01a2_6741_abf4_60ccab51cdb3["teardown()"]
  74a692c5_5fbf_7746_e49c_48a5484606a6 -->|calls| 20340432_01a2_6741_abf4_60ccab51cdb3
  style 74a692c5_5fbf_7746_e49c_48a5484606a6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/svelte/src/internal/client/dom/elements/bindings/props.js lines 13–22

export function bind_prop(props, prop, value) {
	var desc = get_descriptor(props, prop);

	if (desc && desc.set) {
		props[prop] = value;
		teardown(() => {
			props[prop] = null;
		});
	}
}

Domain

Subdomains

Calls

Frequently Asked Questions

What does bind_prop() do?
bind_prop() is a function in the svelte codebase, defined in packages/svelte/src/internal/client/dom/elements/bindings/props.js.
Where is bind_prop() defined?
bind_prop() is defined in packages/svelte/src/internal/client/dom/elements/bindings/props.js at line 13.
What does bind_prop() call?
bind_prop() calls 1 function(s): teardown.

Analyze Your Own Codebase

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

Try Supermodel Free