From 9d33b2fe6b3fbea60d981d9f4ed24cf82b05a7af Mon Sep 17 00:00:00 2001 From: Rory& Date: Thu, 29 May 2025 22:48:16 +0200 Subject: Prettier config --- src/util/secretUtils.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/util/secretUtils.js') diff --git a/src/util/secretUtils.js b/src/util/secretUtils.js index 33e5fef..bbad8ca 100644 --- a/src/util/secretUtils.js +++ b/src/util/secretUtils.js @@ -1,9 +1,9 @@ -import fs from "node:fs/promises"; +import fs from 'node:fs/promises'; export async function readSecret(path) { - if (!path) { - throw new Error("Path to secret file is required"); - } - const content = await fs.readFile(path, "utf8"); - return content.trim(); + if (!path) { + throw new Error('Path to secret file is required'); + } + const content = await fs.readFile(path, 'utf8'); + return content.trim(); } -- cgit 1.5.1