UNPKG

@thi.ng/checks

Version:

Collection of 70+ type, feature & value checks

6 lines (5 loc) 165 B
import { isPlainObject } from "./is-plain-object.js"; const isObjectOf = (pred) => (x) => isPlainObject(x) && Object.values(x).every(pred); export { isObjectOf };