nsn-util
Version:
NSN工具辅助组件
52 lines (40 loc) • 2.33 kB
JavaScript
;
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.now = void 0;
var _moment = _interopRequireDefault(require("moment"));
var NStr = _interopRequireWildcard(require("./NStr"));
function _getRequireWildcardCache() { if (typeof WeakMap !== "function") return null; var cache = new WeakMap(); _getRequireWildcardCache = function _getRequireWildcardCache() { return cache; }; return cache; }
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// 关闭警告提示
_moment.default.suppressDeprecationWarnings = true;
/**
* 获取日期
*
* @param str 需要格式化的日期格式字符串
* @returns 字符串未定义时,返回当前日期
*/
var now = function now(str) {
if (NStr.isEmpty(str)) {
return get((0, _moment.default)());
}
return get((0, _moment.default)(str));
};
exports.now = now;
var get = function get(now) {
var text = now.format('YYYY 年 MM 月 DD 日');
var value = now.format('YYYY-MM-DD');
var year = now.year();
var month = now.month() + 1;
var day = now.date();
return {
text: text,
value: value,
year: year,
month: month,
day: day
};
};