Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Nov 30, 2023
1 parent 6dd2da9 commit b40da4f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Source/Variable/Option.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,8 @@ export default {
Path: "./Target",
Logger: 2,
Action: {
Read: async ({ Input }) => {
// Start timer here
// ignore if timer started

return await (await import("fs/promises")).readFile(Input, "utf-8")
},
Read: async ({ Input }) =>
await (await import("fs/promises")).readFile(Input, "utf-8"),
Wrote: async ({ Buffer }) => Buffer,
// biome-ignore lint/complexity/useSimplifiedLogicExpression:
Passed: async (On) => On && true,
Expand Down

0 comments on commit b40da4f

Please sign in to comment.