Update packages/svelte/src/internal/client/dom/elements/attributes.js

gh-12624
Rich Harris 2 months ago committed by GitHub
parent c9c956df24
commit 9636c88cf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -377,7 +377,7 @@ function get_setters(element) {
var proto = get_prototype_of(element);
// Stop at Element, from there on there's only unnecessary setters we're not interested in
while (proto.constructor.name !== 'Element') {
while (proto.constructor !== Element) {
descriptors = get_descriptors(proto);
for (var key in descriptors) {

Loading…
Cancel
Save