forked from sveltejs/svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpected.js
47 lines (43 loc) · 813 Bytes
/
expected.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* generated by Svelte vX.Y.Z */
import {
SvelteComponent,
append,
attr,
detach,
element,
init,
noop,
safe_not_equal
} from "svelte/internal";
function create_fragment(ctx) {
let meta0;
let meta1;
return {
c() {
meta0 = element("meta");
meta1 = element("meta");
attr(meta0, "name", "twitter:creator");
attr(meta0, "content", "@sveltejs");
attr(meta1, "name", "twitter:title");
attr(meta1, "content", "Svelte");
},
m(target, anchor) {
append(document.head, meta0);
append(document.head, meta1);
},
p: noop,
i: noop,
o: noop,
d(detaching) {
detach(meta0);
detach(meta1);
}
};
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, null, create_fragment, safe_not_equal, {});
}
}
export default Component;