reconciler.js — svelte Source File
Architecture documentation for reconciler.js, a javascript file in the svelte codebase. 0 imports, 3 dependents.
Entity Profile
Dependency Diagram
graph LR a156992a_4c74_fff0_8871_1aae7581b781["reconciler.js"] 9c9641c6_8e9b_282d_184f_5515feedb7b5["html.js"] 9c9641c6_8e9b_282d_184f_5515feedb7b5 --> a156992a_4c74_fff0_8871_1aae7581b781 55f8ed50_b15a_01d0_494d_397077cb618a["snippet.js"] 55f8ed50_b15a_01d0_494d_397077cb618a --> a156992a_4c74_fff0_8871_1aae7581b781 2ab7c579_f011_f472_7847_c9e9979c6b2a["template.js"] 2ab7c579_f011_f472_7847_c9e9979c6b2a --> a156992a_4c74_fff0_8871_1aae7581b781 style a156992a_4c74_fff0_8871_1aae7581b781 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
/** @param {string} html */
export function create_fragment_from_html(html) {
var elem = document.createElement('template');
elem.innerHTML = html.replaceAll('<!>', '<!---->'); // XHTML compliance
return elem.content;
}
Domain
Subdomains
Functions
Imported By
Source
Frequently Asked Questions
What does reconciler.js do?
reconciler.js is a source file in the svelte codebase, written in javascript. It belongs to the ClientRuntime domain, Hydration subdomain.
What functions are defined in reconciler.js?
reconciler.js defines 1 function(s): create_fragment_from_html.
What files import reconciler.js?
reconciler.js is imported by 3 file(s): html.js, snippet.js, template.js.
Where is reconciler.js in the architecture?
reconciler.js is located at packages/svelte/src/internal/client/dom/reconciler.js (domain: ClientRuntime, subdomain: Hydration, directory: packages/svelte/src/internal/client/dom).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free