检查一个值是否为“纯”对象(由 {} 或 new Object() 创建),排除数组、null、以及其他非对象类型(如 new Date())。这是一个 TypeScript 类型保护函数。
import { isPlainObject } from '@movk/core'
isPlainObject({}) // => true
isPlainObject(new Object()) // => true
isPlainObject(new Date()) // => false
isPlainObject([]) // => false
isPlainObject(value: unknown): value is Record<string, any>
true,否则返回 false。b6146 — refactor: 统一源码文件命名为 camelCase