v1.0 with SW PWA enabled
This commit is contained in:
29
frontend/node_modules/date-fns/_lib/test.mjs
generated
vendored
Normal file
29
frontend/node_modules/date-fns/_lib/test.mjs
generated
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
import { addLeadingZeros } from "./addLeadingZeros.mjs";
|
||||
import { setDefaultOptions } from "./defaultOptions.mjs";
|
||||
|
||||
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.
|
||||
let offset = "";
|
||||
const tzOffset = originalDate.getTimezoneOffset();
|
||||
|
||||
if (tzOffset !== 0) {
|
||||
const absoluteOffset = Math.abs(tzOffset);
|
||||
const hourOffset = addLeadingZeros(Math.trunc(absoluteOffset / 60), 2);
|
||||
const minuteOffset = addLeadingZeros(absoluteOffset % 60, 2);
|
||||
// If less than 0, the sign is +, because it is ahead of time.
|
||||
const sign = tzOffset < 0 ? "+" : "-";
|
||||
|
||||
offset = `${sign}${hourOffset}:${minuteOffset}`;
|
||||
} else {
|
||||
offset = "Z";
|
||||
}
|
||||
|
||||
return offset;
|
||||
}
|
||||
Reference in New Issue
Block a user