Skip to content

Commit e369f29

Browse files
committedAug 27, 2021
[minor] Remove unnecessary property lookup
1 parent 16b49af commit e369f29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎resources/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function registerAll(Shopify) {
8888
})[prop];
8989
},
9090
set: function set(value) {
91-
Object.defineProperty(this, prop, { value })[prop];
91+
Object.defineProperty(this, prop, { value });
9292
}
9393
});
9494
});

0 commit comments

Comments
 (0)
Please sign in to comment.