123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- const deepmerge = require("deepmerge");
- /**
- * 判断对象类型
- * @param {*} obj 对象
- */
- function objTypeOf(obj) {
- const toString = Object.prototype.toString;
- const map = {
- "[object Boolean]": "boolean",
- "[object Number]": "number",
- "[object String]": "string",
- "[object Function]": "function",
- "[object Array]": "array",
- "[object Date]": "date",
- "[object RegExp]": "regExp",
- "[object Undefined]": "undefined",
- "[object Null]": "null",
- "[object Object]": "object"
- };
- return map[toString.call(obj)];
- }
- /**
- * 深拷贝
- * @param {Object/Array} data 需要拷贝的数据
- */
- function deepCopy(data, options) {
- const defObj = objTypeOf(data) === "array" ? [] : {};
- return deepmerge(defObj, data, options || {});
- }
- /**
- * 将目标对象中有的属性值与源对象中的属性值合并
- * @param {Object} target 目标对象
- * @param {Object} sources 源对象
- */
- function objAssign(target, sources) {
- let targ = { ...target };
- for (let k in targ) {
- targ[k] = Object.prototype.hasOwnProperty.call(sources, k)
- ? sources[k]
- : targ[k];
- }
- return targ;
- }
- /**
- * 获取随机code,默认获取16位
- * @param {Number} len 推荐8的倍数
- *
- */
- function randomCode(len = 16) {
- if (len <= 0) return;
- let steps = Math.ceil(len / 8);
- let stepNums = [];
- for (let i = 0; i < steps; i++) {
- let ranNum = Math.random()
- .toString(32)
- .slice(-8);
- stepNums.push(ranNum);
- }
- return stepNums.join("");
- }
- /**
- *
- * @param {String} format 时间格式
- * @param {Date} date 需要格式化的时间对象
- */
- function formatDate(format = "YYYY/MM/DD HH:mm:ss", date = new Date()) {
- if (objTypeOf(date) !== "date") return;
- const options = {
- "Y+": date.getFullYear(),
- "M+": date.getMonth() + 1,
- "D+": date.getDate(),
- "H+": date.getHours(),
- "m+": date.getMinutes(),
- "s+": date.getSeconds()
- };
- Object.entries(options).map(([key, val]) => {
- if (new RegExp("(" + key + ")").test(format)) {
- const zeros = key === "Y+" ? "0000" : "00";
- const value = (zeros + val).substr(("" + val).length);
- format = format.replace(RegExp.$1, value);
- }
- });
- return format;
- }
- /**
- * 获取本地时间,格式:年月日时分秒
- */
- function localNowDateTime() {
- return formatDate("YYYY年MM月DD日HH时mm分ss秒");
- }
- /**
- * 获取指定元素个数的数组
- * @param {Number} num
- */
- function getNumList(num) {
- return "#".repeat(num).split("");
- }
- /**
- * 清除html标签
- * @param {String} str html字符串
- */
- function removeHtmlTag(str) {
- return str.replace(/<[^>]+>/g, "");
- }
- /**
- * 计算总数
- * @param {Array} dataList 需要统计的数组
- */
- function calcSum(dataList) {
- return dataList.reduce(function(total, item) {
- return total + item;
- }, 0);
- }
- function isEmptyObject(obj) {
- return !Object.keys(obj).length;
- }
- function getElementId() {
- return `element-${randomCode()}`;
- }
- export {
- objTypeOf,
- deepCopy,
- objAssign,
- randomCode,
- formatDate,
- localNowDateTime,
- getNumList,
- removeHtmlTag,
- calcSum,
- isEmptyObject,
- getElementId
- };
|