From d55b767039605256c736166a942a9138e3eacfd7 Mon Sep 17 00:00:00 2001 From: Pinapelz Date: Sun, 29 Jun 2025 11:49:28 -0700 Subject: remove dev node_modules (oops) --- node_modules/date-fns/esm/_lib/test/index.js | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 node_modules/date-fns/esm/_lib/test/index.js (limited to 'node_modules/date-fns/esm/_lib/test') diff --git a/node_modules/date-fns/esm/_lib/test/index.js b/node_modules/date-fns/esm/_lib/test/index.js deleted file mode 100644 index 6193684..0000000 --- a/node_modules/date-fns/esm/_lib/test/index.js +++ /dev/null @@ -1,24 +0,0 @@ -import addLeadingZeros from "../addLeadingZeros/index.js"; -import { setDefaultOptions } from "../defaultOptions/index.js"; -export function assertType(_) {} -export function resetDefaultOptions() { - setDefaultOptions({}); -} - -// This makes sure we create the consistent offsets across timezones, no matter where these tests are ran. -export function generateOffset(originalDate) { - // Add the timezone. - var offset = ''; - var tzOffset = originalDate.getTimezoneOffset(); - if (tzOffset !== 0) { - var absoluteOffset = Math.abs(tzOffset); - var hourOffset = addLeadingZeros(Math.floor(absoluteOffset / 60), 2); - var minuteOffset = addLeadingZeros(absoluteOffset % 60, 2); - // If less than 0, the sign is +, because it is ahead of time. - var sign = tzOffset < 0 ? '+' : '-'; - offset = "".concat(sign).concat(hourOffset, ":").concat(minuteOffset); - } else { - offset = 'Z'; - } - return offset; -} \ No newline at end of file -- cgit v1.2.3