16 lines
341 B
JavaScript
16 lines
341 B
JavaScript
"use strict";
|
|
exports.getMonth = getMonth;
|
|
var _index = require("../_lib/jalali.cjs");
|
|
|
|
/**
|
|
*
|
|
* @param cleanDate {Date}
|
|
* @returns {number}
|
|
*/
|
|
function getMonth(cleanDate) {
|
|
const gd = cleanDate.getDate();
|
|
const gm = cleanDate.getMonth() + 1;
|
|
const gy = cleanDate.getFullYear();
|
|
return (0, _index.toJalali)(gy, gm, gd).jm - 1;
|
|
}
|