Files
XP-System/node_modules/mongoose/lib/options/SchemaNumberOptions.js
T
2020-11-25 09:10:06 -08:00

57 lines
1.1 KiB
JavaScript

'use strict';
const SchemaTypeOptions = require('./SchemaTypeOptions');
/**
* The options defined on a Number schematype.
*
* ####Example:
*
* const schema = new Schema({ count: Number });
* schema.path('count').options; // SchemaNumberOptions instance
*
* @api public
* @inherits SchemaTypeOptions
* @constructor SchemaNumberOptions
*/
class SchemaNumberOptions extends SchemaTypeOptions {}
const opts = {
enumerable: true,
configurable: true,
writable: true,
value: null
};
/**
* If set, Mongoose adds a validator that checks that this path is at least the
* given `min`.
*
* @api public
* @property min
* @memberOf SchemaNumberOptions
* @type Number
* @instance
*/
Object.defineProperty(SchemaNumberOptions.prototype, 'min', opts);
/**
* If set, Mongoose adds a validator that checks that this path is less than the
* given `max`.
*
* @api public
* @property max
* @memberOf SchemaNumberOptions
* @type Number
* @instance
*/
Object.defineProperty(SchemaNumberOptions.prototype, 'max', opts);
/*!
* ignore
*/
module.exports = SchemaNumberOptions;