@fluentui/react-northstar
Version:
A themable React component library.
15 lines (13 loc) • 421 B
JavaScript
exports.__esModule = true;
exports.formatMonthYear = void 0;
/**
* Format date to a month-year string
* @param date - input date to format
* @param strings - localized strings
*/
var formatMonthYear = function formatMonthYear(date, strings) {
return strings.months[date.getMonth()] + " " + date.getFullYear();
};
exports.formatMonthYear = formatMonthYear;
//# sourceMappingURL=formatMonthYear.js.map
;