Files
BOS-React-/backend/node_modules/mongoose/lib/schema/operators/exists.js
2025-02-10 14:24:56 +05:30

13 lines
203 B
JavaScript

'use strict';
const castBoolean = require('../../cast/boolean');
/*!
* ignore
*/
module.exports = function(val) {
const path = this != null ? this.path : null;
return castBoolean(val, path);
};