32 lines
760 B
JavaScript
32 lines
760 B
JavaScript
'use strict';
|
|
|
|
const { isPlainObject } = require('./validateTypes');
|
|
|
|
/**
|
|
* Check whether the variable is an object and all its properties are one or more values
|
|
* that satisfy the specified validator(s):
|
|
*
|
|
* @example
|
|
* ignoreProperties = {
|
|
* value1: ["item11", "item12", "item13"],
|
|
* value2: "item2",
|
|
* };
|
|
* validateObjectWithArrayProps(isString)(ignoreProperties);
|
|
* //=> true
|
|
*
|
|
* @typedef {(value: unknown) => boolean} Validator
|
|
* @param {...Validator} validators
|
|
* @returns {Validator}
|
|
*/
|
|
module.exports = function validateObjectWithArrayProps(...validators) {
|
|
return (value) => {
|
|
if (!isPlainObject(value)) {
|
|
return false;
|
|
}
|
|
|
|
return Object.values(value)
|
|
.flat()
|
|
.every((item) => validators.some((v) => v(item)));
|
|
};
|
|
};
|