We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d62843 commit c735f2bCopy full SHA for c735f2b
packages/svelte/src/internal/client/operations.js
@@ -61,9 +61,10 @@ export function init_operations() {
61
if (node_prototype !== undefined) {
62
return;
63
}
64
- node_prototype = /** @type {Node} */ (Node.prototype);
65
- element_prototype = /** @type {Element} */ (Element.prototype);
66
- text_prototype = /** @type {Text} */ (Text.prototype);
+
+ node_prototype = Node.prototype;
+ element_prototype = Element.prototype;
67
+ text_prototype = Text.prototype;
68
map_prototype = Map.prototype;
69
append_child_method = node_prototype.appendChild;
70
clone_node_method = node_prototype.cloneNode;
0 commit comments