bundle.js — vite Source File
Architecture documentation for bundle.js, a javascript file in the vite codebase.
Entity Profile
Relationship Graph
Source Code
function covered$1() {
return 'First'
}
function uncovered$1() {
return 'Uncovered'
}
var first = /*#__PURE__*/ Object.freeze({
__proto__: null,
covered: covered$1,
uncovered: uncovered$1,
})
function covered() {
return 'Second'
}
function uncovered() {
return 'Uncovered'
}
var second = /*#__PURE__*/ Object.freeze({
__proto__: null,
covered: covered,
uncovered: uncovered,
})
export { first, second }
//# sourceMappingURL=bundle.js.map
Domain
Subdomains
Source
Frequently Asked Questions
What does bundle.js do?
bundle.js is a source file in the vite codebase, written in javascript. It belongs to the ViteCore domain, ConfigEngine subdomain.
What functions are defined in bundle.js?
bundle.js defines 4 function(s): covered, covered$1, uncovered, uncovered$1.
Where is bundle.js in the architecture?
bundle.js is located at packages/vite/src/node/ssr/__tests__/fixtures/bundled-with-sourcemaps/bundle.js (domain: ViteCore, subdomain: ConfigEngine, directory: packages/vite/src/node/ssr/__tests__/fixtures/bundled-with-sourcemaps).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free