Files
OliveTin/frontend/node_modules/stylelint/lib/utils/validateObjectWithProps.cjs

35 lines
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).
'use strict';
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;