vant/packages/utils/index.js

42 lines
881 B
JavaScript

import Vue from 'vue';
export { use } from './use';
export const isServer = Vue.prototype.$isServer;
export function noop() {}
export function isDef(value) {
return value !== undefined && value !== null;
}
export function isObj(x) {
const type = typeof x;
return x !== null && (type === 'object' || type === 'function');
}
export 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;
export function camelize(str) {
return str.replace(camelizeRE, (_, c) => c.toUpperCase());
}
export function isAndroid() {
/* istanbul ignore next */
return isServer ? false : /android/.test(navigator.userAgent.toLowerCase());
}
export function range(num, min, max) {
return Math.min(Math.max(num, min), max);
}