first commit
This commit is contained in:
34
node_modules/stylelint/lib/utils/validateObjectWithProps.cjs
generated
vendored
Normal file
34
node_modules/stylelint/lib/utils/validateObjectWithProps.cjs
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
// 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;
|
||||
Reference in New Issue
Block a user