_config.js — svelte Source File
Architecture documentation for _config.js, a javascript file in the svelte codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR f71cc41e_e907_436a_2c93_488d44104b14["_config.js"] 654af6d6_2570_6860_f8dd_6b6131e1eec4["test.ts"] f71cc41e_e907_436a_2c93_488d44104b14 --> 654af6d6_2570_6860_f8dd_6b6131e1eec4 style f71cc41e_e907_436a_2c93_488d44104b14 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { test } from '../../test';
export default test({
get props() {
return {
/** @type {string[]} */
things: []
};
},
test({ assert, component, target, raf }) {
const div = /** @type {HTMLDivElement & { foo: Number }} */ (target.querySelector('div'));
component.things = ['a', 'b', 'c'];
raf.tick(200);
assert.equal(div.foo, 0.5);
raf.tick(300);
assert.equal(div.foo, 0.25);
raf.tick(400);
assert.equal(div.foo, 0);
raf.tick(500);
}
});
Domain
Subdomains
Functions
Dependencies
Source
Frequently Asked Questions
What does _config.js do?
_config.js is a source file in the svelte codebase, written in javascript. It belongs to the BuildSystem domain, MessageProcessor subdomain.
What functions are defined in _config.js?
_config.js defines 2 function(s): default.props, default.test.
What does _config.js depend on?
_config.js imports 1 module(s): test.ts.
Where is _config.js in the architecture?
_config.js is located at packages/svelte/tests/runtime-legacy/samples/transition-js-each-else-block-outro/_config.js (domain: BuildSystem, subdomain: MessageProcessor, directory: packages/svelte/tests/runtime-legacy/samples/transition-js-each-else-block-outro).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free