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