zkt25/Backend/node_modules/mongoose/lib/helpers/isSimpleValidator.js
Andrii Pervashov d1b27aff06 initial commit
2025-03-16 16:17:44 +01:00

23 lines
454 B
JavaScript

'use strict';
/**
* Determines if `arg` is a flat object.
*
* @param {Object|Array|String|Function|RegExp|any} arg
* @api private
* @return {Boolean}
*/
module.exports = function isSimpleValidator(obj) {
const keys = Object.keys(obj);
let result = true;
for (let i = 0, len = keys.length; i < len; ++i) {
if (typeof obj[keys[i]] === 'object' && obj[keys[i]] !== null) {
result = false;
break;
}
}
return result;
};