MOOver.js/node_modules/mongoose/lib/schema/operators/exists.js

13 lines
203 B
JavaScript
Raw Normal View History

2022-02-18 12:54:33 +00:00
'use strict';
const castBoolean = require('../../cast/boolean');
/*!
* ignore
*/
module.exports = function(val) {
const path = this != null ? this.path : null;
return castBoolean(val, path);
};