6 lines
101 B
JavaScript
6 lines
101 B
JavaScript
function helperGetDateMonth (date) {
|
|
return date.getMonth()
|
|
}
|
|
|
|
module.exports = helperGetDateMonth
|