deno.land / x / mongoose@6.7.5 / lib / helpers / schema / applyWriteConcern.js

applyWriteConcern.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
'use strict';
const get = require('../get');
module.exports = function applyWriteConcern(schema, options) { const writeConcern = get(schema, 'options.writeConcern', {}); if (Object.keys(writeConcern).length != 0) { options.writeConcern = {}; if (!('w' in options) && writeConcern.w != null) { options.writeConcern.w = writeConcern.w; } if (!('j' in options) && writeConcern.j != null) { options.writeConcern.j = writeConcern.j; } if (!('wtimeout' in options) && writeConcern.wtimeout != null) { options.writeConcern.wtimeout = writeConcern.wtimeout; } } else { if (!('w' in options) && writeConcern.w != null) { options.w = writeConcern.w; } if (!('j' in options) && writeConcern.j != null) { options.j = writeConcern.j; } if (!('wtimeout' in options) && writeConcern.wtimeout != null) { options.wtimeout = writeConcern.wtimeout; } }};
mongoose

Version Info

Tagged at
a year ago