mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
24 lines
402 B
TypeScript
24 lines
402 B
TypeScript
function isDef(value: any): boolean {
|
|
return value !== undefined && value !== null;
|
|
}
|
|
|
|
function isObj(x: any): boolean {
|
|
const type = typeof x;
|
|
return x !== null && (type === 'object' || type === 'function');
|
|
}
|
|
|
|
function isNumber(value) {
|
|
return /^\d+$/.test(value);
|
|
}
|
|
|
|
function isSrc(url) {
|
|
return /^(https?:)?\/\/|data:image/.test(url);
|
|
}
|
|
|
|
export {
|
|
isObj,
|
|
isDef,
|
|
isSrc,
|
|
isNumber
|
|
};
|