deno.land / x / mongoose@6.7.5 / lib / helpers / indexes / isTextIndex.js

isTextIndex.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';
/** * Returns `true` if the given index options have a `text` option. */
module.exports = function isTextIndex(indexKeys) { let isTextIndex = false; for (const key of Object.keys(indexKeys)) { if (indexKeys[key] === 'text') { isTextIndex = true; } }
return isTextIndex;};
mongoose

Version Info

Tagged at
a year ago