diff pixiv-direct-external-link.user.js @ 108:2c4470b73ad9

Switch to semistandard No more `;` at the start of line.
author nanaya <me@nanaya.net>
date Sun, 15 Jan 2023 23:24:03 +0900
parents 9c8cde985caf
children ef21ef445fc6
line wrap: on
line diff
--- a/pixiv-direct-external-link.user.js	Sun Jan 15 23:15:45 2023 +0900
+++ b/pixiv-direct-external-link.user.js	Sun Jan 15 23:24:03 2023 +0900
@@ -10,16 +10,16 @@
 // ==/UserScript==
 
 /* global $ */
-;(function () {
-  'use strict'
+(function () {
+  'use strict';
 
   const fixLink = function (_i, el) {
-    const $el = $(el)
-    const url = decodeURIComponent($el.attr('href').replace(/^\/?jump.php\?/, ''))
+    const $el = $(el);
+    const url = decodeURIComponent($el.attr('href').replace(/^\/?jump.php\?/, ''));
 
-    $el.attr('href', url)
-  }
+    $el.attr('href', url);
+  };
 
-  $("[href^='jump.php?']").each(fixLink)
-  $("[href^='/jump.php?']").each(fixLink)
-}).call()
+  $("[href^='jump.php?']").each(fixLink);
+  $("[href^='/jump.php?']").each(fixLink);
+}).call();