UNPKG

@ivanwei/tui-date-picker

Version:
17 lines (14 loc) 341 B
/** * @fileoverview Handlebars helper - timestamp * @author NHN Ent. FE Development Lab <dl_javascript@nhnent.com> */ 'use strict'; /** * Return timestamp * @param {number} year - Year * @param {number} month - Month * @returns {number} */ module.exports = function(year, month) { return new Date(year, month, 1).getTime(); };