Skip to content

Commit

Permalink
remove unused export keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Nov 27, 2023
1 parent 5cf2b7a commit fb6c2b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/svelte/src/internal/client/render.js
Original file line number Diff line number Diff line change
Expand Up @@ -2551,7 +2551,7 @@ let src_url_equal_anchor;
* @param {string} url
* @returns {boolean}
*/
export function src_url_equal(element_src, url) {
function src_url_equal(element_src, url) {
if (element_src === url) return true;
if (!src_url_equal_anchor) {
src_url_equal_anchor = document.createElement('a');
Expand Down

0 comments on commit fb6c2b8

Please sign in to comment.