mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
26 lines
625 B
JavaScript
26 lines
625 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function isDef(value) {
|
|
return value !== undefined && value !== null;
|
|
}
|
|
exports.isDef = isDef;
|
|
function isObj(x) {
|
|
var type = typeof x;
|
|
return x !== null && (type === 'object' || type === 'function');
|
|
}
|
|
exports.isObj = isObj;
|
|
function isNumber(value) {
|
|
return /^\d+$/.test(value);
|
|
}
|
|
exports.isNumber = isNumber;
|
|
function range(num, min, max) {
|
|
return Math.min(Math.max(num, min), max);
|
|
}
|
|
exports.range = range;
|
|
function nextTick(fn) {
|
|
setTimeout(function () {
|
|
fn();
|
|
}, 1000 / 30);
|
|
}
|
|
exports.nextTick = nextTick;
|