Cleanup
This commit is contained in:
9
node_modules/mongoose/lib/schema/operators/type.js
generated
vendored
9
node_modules/mongoose/lib/schema/operators/type.js
generated
vendored
@@ -5,8 +5,15 @@
|
||||
*/
|
||||
|
||||
module.exports = function(val) {
|
||||
if (Array.isArray(val)) {
|
||||
if (!val.every(v => typeof v === 'number' || typeof v === 'string')) {
|
||||
throw new Error('$type array values must be strings or numbers');
|
||||
}
|
||||
return val;
|
||||
}
|
||||
|
||||
if (typeof val !== 'number' && typeof val !== 'string') {
|
||||
throw new Error('$type parameter must be number or string');
|
||||
throw new Error('$type parameter must be number, string, or array of numbers and strings');
|
||||
}
|
||||
|
||||
return val;
|
||||
|
||||
Reference in New Issue
Block a user