blob: 574fdd82e55d5a7c3831b59fdeec99d7753a1dc2 (
plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
/**
* Module dependencies.
*/
var SchemaType = require('../schematype');
/**
* Boolean SchemaType constructor.
*
* @param {String} path
* @param {Object} options
* @api private
*/
function SchemaBoolean (path, options) {
SchemaType.call(this, path, options);
};
/**
* Inherits from SchemaType.
*/
SchemaBoolean.prototype.__proto__ = SchemaType.prototype;
/**
* Required validator for date
*
* @api private
*/
SchemaBoolean.prototype.checkRequired = function (value) {
return value === true || value === false;
};
/**
* Casts to boolean
*
* @param {Object} value to cast
* @api private
*/
SchemaBoolean.prototype.cast = function (value) {
if (value === null) return value;
if (value === '0') return false;
return !!value;
};
SchemaBoolean.prototype.castForQuery = function ($conditional, val) {
if (arguments.length === 1) {
val = $conditional;
}
return this.cast(val);
};
/**
* Module exports.
*/
module.exports = SchemaBoolean;
|