vue-hooks-plus
Version:
Vue hooks library
15 lines (14 loc) • 658 B
JavaScript
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: "Module" } });
const isObject = (value) => value !== null && typeof value === "object";
const isFunction = (value) => typeof value === "function";
const isString = (value) => typeof value === "string";
const isBoolean = (value) => typeof value === "boolean";
const isNumber = (value) => typeof value === "number";
const isUndef = (value) => typeof value === "undefined";
exports.isBoolean = isBoolean;
exports.isFunction = isFunction;
exports.isNumber = isNumber;
exports.isObject = isObject;
exports.isString = isString;
exports.isUndef = isUndef;
;