@holiday-jp/holiday_jp
Version:
Japanese holidays
15 lines (14 loc) • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Format a date to YYYY-MM-DD string
* @param date Date object to format
* @returns Formatted date string (YYYY-MM-DD)
*/
function format(date) {
const year = date.getFullYear();
const month = ('0' + (date.getMonth() + 1)).slice(-2);
const day = ('0' + (date.getDate())).slice(-2);
return (year + '-' + month + '-' + day);
}
exports.default = format;