You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function helperGetUTCDateTime (resMaps) {
|
|
return Date.UTC(resMaps.y, resMaps.M || 0, resMaps.d || 1, resMaps.H || 0, resMaps.m || 0, resMaps.s || 0, resMaps.S || 0)
|
|
}
|
|
|
|
module.exports = helperGetUTCDateTime
|
|
|