create.js — svelte Source File
Architecture documentation for create.js, a javascript file in the svelte codebase. 0 imports, 3 dependents.
Entity Profile
Dependency Diagram
graph LR 049b365c_2da8_5f0c_8237_3b3a21a0c4bd["create.js"] 67d7170b_725b_33cc_868d_fad6ed435252["index.js"] 67d7170b_725b_33cc_868d_fad6ed435252 --> 049b365c_2da8_5f0c_8237_3b3a21a0c4bd 206889ff_1f9f_b6c1_d530_059d001e1cf4["element.js"] 206889ff_1f9f_b6c1_d530_059d001e1cf4 --> 049b365c_2da8_5f0c_8237_3b3a21a0c4bd 367a364a_2912_a1aa_b2e1_d97a82783c38["tag.js"] 367a364a_2912_a1aa_b2e1_d97a82783c38 --> 049b365c_2da8_5f0c_8237_3b3a21a0c4bd style 049b365c_2da8_5f0c_8237_3b3a21a0c4bd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
/** @import { AST } from '#compiler' */
/**
* @param {any} transparent
* @returns {AST.Fragment}
*/
export function create_fragment(transparent = false) {
return {
type: 'Fragment',
nodes: [],
metadata: {
transparent,
dynamic: false
}
};
}
Domain
Subdomains
Functions
Imported By
Source
Frequently Asked Questions
What does create.js do?
create.js is a source file in the svelte codebase, written in javascript. It belongs to the Compiler domain, Transformer subdomain.
What functions are defined in create.js?
create.js defines 1 function(s): create_fragment.
What files import create.js?
create.js is imported by 3 file(s): element.js, index.js, tag.js.
Where is create.js in the architecture?
create.js is located at packages/svelte/src/compiler/phases/1-parse/utils/create.js (domain: Compiler, subdomain: Transformer, directory: packages/svelte/src/compiler/phases/1-parse/utils).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free