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

44 lines
944 B

/* generated by Svelte vX.Y.Z */
import { appendNode, assign, createElement, detachNode, init, noop, proto } from "svelte/shared.js";
function create_main_fragment(component, ctx) {
var meta, meta_1;
return {
6 years ago
c() {
meta = createElement("meta");
meta_1 = createElement("meta");
meta.name = "twitter:creator";
meta.content = "@sveltejs";
meta_1.name = "twitter:title";
meta_1.content = "Svelte";
},
6 years ago
m(target, anchor) {
appendNode(meta, document.head);
appendNode(meta_1, document.head);
},
p: noop,
6 years ago
d(detach) {
detachNode(meta);
detachNode(meta_1);
6 years ago
}
};
}
function SvelteComponent(options) {
init(this, options);
this._state = assign({}, options.data);
7 years ago
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor, true);
}
}
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;