deno.land / x / mongoose@6.7.5 / lib / schema / operators / type.js

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
'use strict';
/*! * ignore */
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, string, or array of numbers and strings'); }
return val;};
mongoose

Version Info

Tagged at
a year ago