From 0c6bae9a90ff94e7d28c89aa6998f31df2b2a8cf Mon Sep 17 00:00:00 2001 From: David Ralph Date: Fri, 27 Sep 2024 20:05:24 +0100 Subject: [PATCH] fix: rename date function to fix imports --- src/utils/date/{getNth.js => appendNth.js} | 0 src/utils/date/index.js | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/utils/date/{getNth.js => appendNth.js} (100%) diff --git a/src/utils/date/getNth.js b/src/utils/date/appendNth.js similarity index 100% rename from src/utils/date/getNth.js rename to src/utils/date/appendNth.js diff --git a/src/utils/date/index.js b/src/utils/date/index.js index ddb70924..234e5f4b 100644 --- a/src/utils/date/index.js +++ b/src/utils/date/index.js @@ -1,4 +1,4 @@ import { convertTimezone } from './convertTimezone'; -import { getNth } from './getNth'; +import { appendNth } from './appendNth'; -export { convertTimezone, getNth }; +export { convertTimezone, appendNth };