From 795a0daa0350cf8fb892c3968960d11bb5d59b8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 10 Jun 2024 17:17:46 -0400 Subject: [PATCH] lint: fix semicolons --- src/posts/cache.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/posts/cache.js b/src/posts/cache.js index 7b029432df..b08b72521f 100644 --- a/src/posts/cache.js +++ b/src/posts/cache.js @@ -23,10 +23,10 @@ exports.del = function (pid) { if (cache) { cache.del(pid); } -} +}; exports.reset = function () { if (cache) { cache.reset(); } -} +};