First Commit
This commit is contained in:
commit
601e886c14
2123 files changed
+334815
No files matched your search
+57
@@ -0,0 +1,57 @@
|
||||
'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;
|
||||
Reference in new issue
Block a user