From 7d31a89ad7249da6a98e8a8c35f5791846d4f475 Mon Sep 17 00:00:00 2001 From: hyperz111 Date: Wed, 10 Dec 2025 17:04:06 +0700 Subject: [PATCH] refactor: remove unnecessary async keyword --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 710c009..29bd0e7 100644 --- a/src/index.js +++ b/src/index.js @@ -68,7 +68,7 @@ function createContext(ctx) { return ctx } -async function loader(filepath) { +function loader(filepath) { return req(filepath) }