summaryrefslogtreecommitdiff
path: root/node_modules/mongoose/lib/schema/mixed.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/mongoose/lib/schema/mixed.js')
-rw-r--r--node_modules/mongoose/lib/schema/mixed.js63
1 files changed, 63 insertions, 0 deletions
diff --git a/node_modules/mongoose/lib/schema/mixed.js b/node_modules/mongoose/lib/schema/mixed.js
new file mode 100644
index 0000000..6f98be0
--- /dev/null
+++ b/node_modules/mongoose/lib/schema/mixed.js
@@ -0,0 +1,63 @@
+
+/**
+ * Module dependencies.
+ */
+
+var SchemaType = require('../schematype');
+
+/**
+ * Mixed SchemaType constructor.
+ *
+ * @param {String} path
+ * @param {Object} options
+ * @api private
+ */
+
+function Mixed (path, options) {
+ // make sure empty array defaults are handled
+ if (options &&
+ options.default &&
+ Array.isArray(options.default) &&
+ 0 === options.default.length) {
+ options.default = Array;
+ }
+
+ SchemaType.call(this, path, options);
+};
+
+/**
+ * Inherits from SchemaType.
+ */
+Mixed.prototype.__proto__ = SchemaType.prototype;
+
+/**
+ * Required validator for mixed type
+ *
+ * @api private
+ */
+
+Mixed.prototype.checkRequired = function (val) {
+ return true;
+};
+
+/**
+ * Noop casting
+ *
+ * @param {Object} value to cast
+ * @api private
+ */
+
+Mixed.prototype.cast = function (val) {
+ return val;
+};
+
+Mixed.prototype.castForQuery = function ($cond, val) {
+ if (arguments.length === 2) return val;
+ return $cond;
+};
+
+/**
+ * Module exports.
+ */
+
+module.exports = Mixed;