mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
41 lines
911 B
TypeScript
41 lines
911 B
TypeScript
export function isDef(value: any): boolean {
|
|
return value !== undefined && value !== null;
|
|
}
|
|
|
|
export function isObj(x: any): boolean {
|
|
const type = typeof x;
|
|
return x !== null && (type === 'object' || type === 'function');
|
|
}
|
|
|
|
export function isNumber(value) {
|
|
return /^\d+$/.test(value);
|
|
}
|
|
|
|
export function range(num: number, min: number, max: number) {
|
|
return Math.min(Math.max(num, min), max);
|
|
}
|
|
|
|
export function nextTick(fn: Function) {
|
|
setTimeout(() => {
|
|
fn();
|
|
}, 1000 / 30);
|
|
}
|
|
|
|
let systemInfo: WechatMiniprogram.GetSystemInfoSuccessCallbackResult = null;
|
|
export function getSystemInfoSync() {
|
|
if (systemInfo == null) {
|
|
systemInfo = wx.getSystemInfoSync();
|
|
}
|
|
|
|
return systemInfo;
|
|
}
|
|
|
|
export function addUnit(value?: string | number): string | undefined {
|
|
if (!isDef(value)) {
|
|
return undefined;
|
|
}
|
|
|
|
value = String(value);
|
|
return isNumber(value) ? `${value}px` : value;
|
|
}
|