From 88534d5adfbb6ba4dc07e8601c22e2aeb43c3819 Mon Sep 17 00:00:00 2001 From: tycrek Date: Tue, 15 Nov 2022 22:01:33 -0700 Subject: [PATCH] ez: simplified --- src/generators/timestamp.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/generators/timestamp.ts b/src/generators/timestamp.ts index b613c34..b4dffe2 100644 --- a/src/generators/timestamp.ts +++ b/src/generators/timestamp.ts @@ -1,3 +1 @@ -export default () => { - return `${Date.now()}`; -}; +export default () => `${Date.now()}`;