You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.0 KiB

6 months ago
export { isArray, isBoolean, isDate, isObject, isFunction, isString, isNumber, isNull } from 'lodash-es'
import { isObject } from 'lodash-es'
/**
* @description http
*/
export function isExternal(path: string) {
return /^(https?:|mailto:|tel:)/.test(path)
}
/**
* @description http
*/
export const isLinkHttp = (link: string): boolean => /^(https?:)?\/\//.test(link)
/**
* @description
*/
export const isLinkTel = (link: string): boolean => /^tel:/.test(link)
/**
* @description
*/
export const isPhone = (link: string): boolean => /^1[3|5|6|7|8|9][0-9]{9}$/.test(link)
/**
* @description
*/
export const isLinkMailto = (link: string): boolean => /^mailto:/.test(link)
/**
* @description
* @param {unknown} value
* @return {Boolean}
*/
export const isEmpty = (value: unknown) => {
return value !== null && value !== '' && typeof value !== 'undefined'
}
/**
* @description
* @param {Object} value
* @return {Boolean}
*/
export const isEmptyObject = (target: object) => {
return isObject(target) && !Object.keys(target).length
}
/**
*
*/
export const PhoneReg = /^1[3|5|6|7|8|9][0-9]{9}$/
export function hidePhoneNumber(phoneNumber:string) {
// 确保输入的是字符串
phoneNumber = phoneNumber.toString();
// 使用正则表达式替换中间七位数字为*
const hiddenNumber = phoneNumber.replace(/(\d{3})\d{4}(\d{4})/, '$1****$2');
17634529379
return hiddenNumber;
}
export function hideQQ(qqNumber:string) {
// 确保输入的是字符串
qqNumber = qqNumber.toString();
// 使用正则表达式替换中间的数字为*
var hiddenQQ = qqNumber.replace(/(\d{3})\d+(\d{2})/, '$1****$2');
return hiddenQQ;
}
// 去除图片url前缀
export function urlSplit(url:any) {
if (url.indexOf("hjbimage") !== -1) {
return 'hjbimage' + url.split('hjbimage')[1]
}else{
return url
}
}