UNPKG

project-libs

Version:

project-libs 是一个常用函数集锦的工具库,包括浏览器、函数式、常用验证、cookie、数组处理等函数。

16 lines (15 loc) 406 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getMonth; /** * 获取当前月份 * @param {Boolean} fill 布尔值,是否补 0,默认为 true */ function getMonth(fill) { if (fill === void 0) { fill = true; } var mon = new Date().getMonth() + 1; var monRe = mon; if (fill) mon < 10 ? "0".concat(mon) : mon; return monRe; }