From 4a4f9dd831f292c31aa20bb7b9a53786f02b534b Mon Sep 17 00:00:00 2001 From: zyimm Date: Thu, 16 May 2024 14:16:24 +0800 Subject: [PATCH] =?UTF-8?q?:art:=20=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _posts/code-first.md | 1 - 1 file changed, 1 deletion(-) diff --git a/_posts/code-first.md b/_posts/code-first.md index a9f3647..32aeacd 100755 --- a/_posts/code-first.md +++ b/_posts/code-first.md @@ -17,5 +17,4 @@ const unfold = (f, seed) => { const res = f(seed) return res ? go(f, res[1], acc.concat([res[0]])) : acc } - ```