UNPKG

rspress-plugin-devkit

Version:
9 lines (8 loc) 271 B
export function isObject(value) { return value !== null && typeof value === 'object' && !Array.isArray(value); } export function isPrimitive(value) { return (typeof value === 'string' || typeof value === 'number' || typeof value === 'boolean'); }