@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
13 lines • 662 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.formatDateForInput = void 0;
const date_fns_1 = require("date-fns");
const parse_date_1 = require("./parse-date");
const formatDateForInput = (date, locale, type, inputFormat) => {
const INPUT_DATE_STRING_FORMAT = inputFormat !== null && inputFormat !== void 0 ? inputFormat : (type === "date"
? parse_date_1.INPUT_DATE_STRING_FORMAT_DATE
: parse_date_1.INPUT_DATE_STRING_FORMAT_MONTH);
return (0, date_fns_1.format)(date, INPUT_DATE_STRING_FORMAT, { locale });
};
exports.formatDateForInput = formatDateForInput;
//# sourceMappingURL=format-date.js.map