You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/js/samples/debug-ssr-foo/expected.js

13 lines
408 B

/* generated by Svelte vX.Y.Z */
import { create_ssr_component, debug, each, escape } from "svelte/internal";
const SvelteComponent = create_ssr_component(($$result, $$props, $$bindings, $$slots) => {
let { things, foo } = $$props;
return `${each(things, (thing) => `<span>${escape(thing.name)}</span>
${debug(null, 2, 2, { foo })}`)}
<p>foo: ${escape(foo)}</p>`;
});
export default SvelteComponent;