@ivanwei/tui-date-picker
Version:
TOAST UI Components: DatePicker
17 lines (14 loc) • 341 B
JavaScript
/**
* @fileoverview Handlebars helper - timestamp
* @author NHN Ent. FE Development Lab <dl_javascript@nhnent.com>
*/
;
/**
* Return timestamp
* @param {number} year - Year
* @param {number} month - Month
* @returns {number}
*/
module.exports = function(year, month) {
return new Date(year, month, 1).getTime();
};