mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
48 lines
858 B
JavaScript
48 lines
858 B
JavaScript
import Vue from 'vue';
|
|
|
|
const isServer = Vue.prototype.$isServer;
|
|
|
|
function isDef(value) {
|
|
return value !== undefined && value !== null;
|
|
}
|
|
|
|
function isObj(x) {
|
|
const type = typeof x;
|
|
return x !== null && (type === 'object' || type === 'function');
|
|
}
|
|
|
|
function get(object, path) {
|
|
const keys = path.split('.');
|
|
let result = object;
|
|
|
|
keys.forEach(key => {
|
|
result = isDef(result[key]) ? result[key] : '';
|
|
});
|
|
|
|
return result;
|
|
}
|
|
|
|
const camelizeRE = /-(\w)/g;
|
|
function camelize(str) {
|
|
return str.replace(camelizeRE, (_, c) => c.toUpperCase());
|
|
}
|
|
|
|
function isAndroid() {
|
|
/* istanbul ignore next */
|
|
return isServer ? false : /android/.test(navigator.userAgent.toLowerCase());
|
|
}
|
|
|
|
function range(num, min, max) {
|
|
return Math.min(Math.max(num, min), max);
|
|
}
|
|
|
|
export {
|
|
get,
|
|
range,
|
|
isObj,
|
|
isDef,
|
|
isServer,
|
|
camelize,
|
|
isAndroid
|
|
};
|