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/head-no-whitespace/expected.js

48 lines
772 B

/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
append,
detach,
element,
init,
noop,
safe_not_equal
} from "svelte/internal";
function create_fragment(ctx) {
var meta0, meta1;
return {
6 years ago
c() {
6 years ago
meta0 = element("meta");
meta1 = element("meta");
meta0.name = "twitter:creator";
meta0.content = "@sveltejs";
meta1.name = "twitter:title";
meta1.content = "Svelte";
},
6 years ago
m(target, anchor) {
append(document.head, meta0);
append(document.head, meta1);
},
p: noop,
i: noop,
o: noop,
6 years ago
d(detaching) {
detach(meta0);
detach(meta1);
6 years ago
}
};
}
class Component extends SvelteComponent {
constructor(options) {
super();
6 years ago
init(this, options, null, create_fragment, safe_not_equal, []);
}
}
export default Component;