All files / src/features/GiveOnboarding/pages/Agreement/Review helpers.ts

66.66% Statements 4/6
50% Branches 2/4
100% Functions 1/1
66.66% Lines 4/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12      9x 23x   23x     23x    
import moment from "moment";
import { PLATFORM_TIMEZONE } from "@utils/timezones";
 
export const parsedTerminationdate = (msaPreviousTerminationAt: any) => {
  Iif (typeof msaPreviousTerminationAt === "number") {
    return moment.unix(msaPreviousTerminationAt).tz(PLATFORM_TIMEZONE).format("MM/DD/YYYY");
  } else Iif (msaPreviousTerminationAt instanceof Date) {
    return moment(msaPreviousTerminationAt).tz(PLATFORM_TIMEZONE).format("MM/DD/YYYY");
  }
  return "";
};