stylelint
Version:
A mighty CSS linter that helps you avoid errors and enforce conventions.
35 lines (30 loc) • 823 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
;
const validateTypes = require('./validateTypes.cjs');
/**
* Check whether the variable is an object and all its properties agree with the provided validator.
*
* @example
* config = {
* value1: 1,
* value2: 2,
* value3: 3,
* };
* validateObjectWithProps(isNumber)(config);
* //=> true
*
* @param {(value: unknown) => boolean} validator
* @returns {(value: unknown) => boolean}
*/
function validateObjectWithProps(validator) {
return (value) => {
if (!validateTypes.isPlainObject(value)) {
return false;
}
return Object.values(value).every((item) => {
return validator(item);
});
};
}
module.exports = validateObjectWithProps;