123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041 |
- 'use strict';
-
- /*!
- * Module dependencies.
- */
-
- const Decimal = require('./types/decimal128');
- const ObjectId = require('./types/objectid');
- const PopulateOptions = require('./options/PopulateOptions');
- const PromiseProvider = require('./promise_provider');
- const cloneRegExp = require('regexp-clone');
- const get = require('./helpers/get');
- const sliced = require('sliced');
- const mpath = require('mpath');
- const ms = require('ms');
- const symbols = require('./helpers/symbols');
- const Buffer = require('safe-buffer').Buffer;
-
- const emittedSymbol = Symbol.for('mongoose:emitted');
-
- let MongooseBuffer;
- let MongooseArray;
- let Document;
-
- const specialProperties = new Set(['__proto__', 'constructor', 'prototype']);
-
- exports.specialProperties = specialProperties;
-
- /*!
- * Produces a collection name from model `name`. By default, just returns
- * the model name
- *
- * @param {String} name a model name
- * @param {Function} pluralize function that pluralizes the collection name
- * @return {String} a collection name
- * @api private
- */
-
- exports.toCollectionName = function(name, pluralize) {
- if (name === 'system.profile') {
- return name;
- }
- if (name === 'system.indexes') {
- return name;
- }
- if (typeof pluralize === 'function') {
- return pluralize(name);
- }
- return name;
- };
-
- /*!
- * Determines if `a` and `b` are deep equal.
- *
- * Modified from node/lib/assert.js
- *
- * @param {any} a a value to compare to `b`
- * @param {any} b a value to compare to `a`
- * @return {Boolean}
- * @api private
- */
-
- exports.deepEqual = function deepEqual(a, b) {
- if (a === b) {
- return true;
- }
-
- if (a instanceof Date && b instanceof Date) {
- return a.getTime() === b.getTime();
- }
-
- if ((isBsonType(a, 'ObjectID') && isBsonType(b, 'ObjectID')) ||
- (isBsonType(a, 'Decimal128') && isBsonType(b, 'Decimal128'))) {
- return a.toString() === b.toString();
- }
-
- if (a instanceof RegExp && b instanceof RegExp) {
- return a.source === b.source &&
- a.ignoreCase === b.ignoreCase &&
- a.multiline === b.multiline &&
- a.global === b.global;
- }
-
- if (typeof a !== 'object' && typeof b !== 'object') {
- return a == b;
- }
-
- if (a === null || b === null || a === undefined || b === undefined) {
- return false;
- }
-
- if (a.prototype !== b.prototype) {
- return false;
- }
-
- // Handle MongooseNumbers
- if (a instanceof Number && b instanceof Number) {
- return a.valueOf() === b.valueOf();
- }
-
- if (Buffer.isBuffer(a)) {
- return exports.buffer.areEqual(a, b);
- }
-
- if (isMongooseObject(a)) {
- a = a.toObject();
- }
- if (isMongooseObject(b)) {
- b = b.toObject();
- }
-
- let ka;
- let kb;
- let key;
- let i;
- try {
- ka = Object.keys(a);
- kb = Object.keys(b);
- } catch (e) {
- // happens when one is a string literal and the other isn't
- return false;
- }
-
- // having the same number of owned properties (keys incorporates
- // hasOwnProperty)
- if (ka.length !== kb.length) {
- return false;
- }
-
- // the same set of keys (although not necessarily the same order),
- ka.sort();
- kb.sort();
-
- // ~~~cheap key test
- for (i = ka.length - 1; i >= 0; i--) {
- if (ka[i] !== kb[i]) {
- return false;
- }
- }
-
- // equivalent values for every corresponding key, and
- // ~~~possibly expensive deep test
- for (i = ka.length - 1; i >= 0; i--) {
- key = ka[i];
- if (!deepEqual(a[key], b[key])) {
- return false;
- }
- }
-
- return true;
- };
-
- /*!
- * Get the bson type, if it exists
- */
-
- function isBsonType(obj, typename) {
- return get(obj, '_bsontype', void 0) === typename;
- }
-
- /*!
- * Get the last element of an array
- */
-
- exports.last = function(arr) {
- if (arr.length > 0) {
- return arr[arr.length - 1];
- }
- return void 0;
- };
-
- /*!
- * Object clone with Mongoose natives support.
- *
- * If options.minimize is true, creates a minimal data object. Empty objects and undefined values will not be cloned. This makes the data payload sent to MongoDB as small as possible.
- *
- * Functions are never cloned.
- *
- * @param {Object} obj the object to clone
- * @param {Object} options
- * @param {Boolean} isArrayChild true if cloning immediately underneath an array. Special case for minimize.
- * @return {Object} the cloned object
- * @api private
- */
-
- exports.clone = function clone(obj, options, isArrayChild) {
- if (obj == null) {
- return obj;
- }
-
- if (Array.isArray(obj)) {
- return cloneArray(obj, options);
- }
-
- if (isMongooseObject(obj)) {
- if (options && options.json && typeof obj.toJSON === 'function') {
- return obj.toJSON(options);
- }
- return obj.toObject(options);
- }
-
- if (obj.constructor) {
- switch (exports.getFunctionName(obj.constructor)) {
- case 'Object':
- return cloneObject(obj, options, isArrayChild);
- case 'Date':
- return new obj.constructor(+obj);
- case 'RegExp':
- return cloneRegExp(obj);
- default:
- // ignore
- break;
- }
- }
-
- if (obj instanceof ObjectId) {
- return new ObjectId(obj.id);
- }
- if (isBsonType(obj, 'Decimal128')) {
- if (options && options.flattenDecimals) {
- return obj.toJSON();
- }
- return Decimal.fromString(obj.toString());
- }
-
- if (!obj.constructor && exports.isObject(obj)) {
- // object created with Object.create(null)
- return cloneObject(obj, options, isArrayChild);
- }
-
- if (obj[symbols.schemaTypeSymbol]) {
- return obj.clone();
- }
-
- if (obj.valueOf != null) {
- return obj.valueOf();
- }
-
- return cloneObject(obj, options, isArrayChild);
- };
- const clone = exports.clone;
-
- /*!
- * ignore
- */
-
- exports.promiseOrCallback = function promiseOrCallback(callback, fn, ee) {
- if (typeof callback === 'function') {
- return fn(function(error) {
- if (error != null) {
- if (ee != null && ee.listeners('error').length > 0 && !error[emittedSymbol]) {
- error[emittedSymbol] = true;
- ee.emit('error', error);
- }
- try {
- callback(error);
- } catch (error) {
- return process.nextTick(() => {
- throw error;
- });
- }
- return;
- }
- callback.apply(this, arguments);
- });
- }
-
- const Promise = PromiseProvider.get();
-
- return new Promise((resolve, reject) => {
- fn(function(error, res) {
- if (error != null) {
- if (ee != null && ee.listeners('error').length > 0 && !error[emittedSymbol]) {
- error[emittedSymbol] = true;
- ee.emit('error', error);
- }
- return reject(error);
- }
- if (arguments.length > 2) {
- return resolve(Array.prototype.slice.call(arguments, 1));
- }
- resolve(res);
- });
- });
- };
-
- /*!
- * ignore
- */
-
- function cloneObject(obj, options, isArrayChild) {
- const minimize = options && options.minimize;
- const ret = {};
- let hasKeys;
-
- for (const k in obj) {
- if (specialProperties.has(k)) {
- continue;
- }
-
- // Don't pass `isArrayChild` down
- const val = clone(obj[k], options);
-
- if (!minimize || (typeof val !== 'undefined')) {
- hasKeys || (hasKeys = true);
- ret[k] = val;
- }
- }
-
- return minimize && !isArrayChild ? hasKeys && ret : ret;
- }
-
- function cloneArray(arr, options) {
- const ret = [];
- for (let i = 0, l = arr.length; i < l; i++) {
- ret.push(clone(arr[i], options, true));
- }
- return ret;
- }
-
- /*!
- * Shallow copies defaults into options.
- *
- * @param {Object} defaults
- * @param {Object} options
- * @return {Object} the merged object
- * @api private
- */
-
- exports.options = function(defaults, options) {
- const keys = Object.keys(defaults);
- let i = keys.length;
- let k;
-
- options = options || {};
-
- while (i--) {
- k = keys[i];
- if (!(k in options)) {
- options[k] = defaults[k];
- }
- }
-
- return options;
- };
-
- /*!
- * Generates a random string
- *
- * @api private
- */
-
- exports.random = function() {
- return Math.random().toString().substr(3);
- };
-
- /*!
- * Merges `from` into `to` without overwriting existing properties.
- *
- * @param {Object} to
- * @param {Object} from
- * @api private
- */
-
- exports.merge = function merge(to, from, options, path) {
- options = options || {};
-
- const keys = Object.keys(from);
- let i = 0;
- const len = keys.length;
- let key;
-
- path = path || '';
- const omitNested = options.omitNested || {};
-
- while (i < len) {
- key = keys[i++];
- if (options.omit && options.omit[key]) {
- continue;
- }
- if (omitNested[path]) {
- continue;
- }
- if (specialProperties.has(key)) {
- continue;
- }
- if (to[key] == null) {
- to[key] = from[key];
- } else if (exports.isObject(from[key])) {
- if (!exports.isObject(to[key])) {
- to[key] = {};
- }
- if (from[key] != null) {
- if (from[key].instanceOfSchema) {
- if (to[key].instanceOfSchema) {
- to[key].add(from[key].clone());
- } else {
- to[key] = from[key].clone();
- }
- continue;
- } else if (from[key] instanceof ObjectId) {
- to[key] = new ObjectId(from[key]);
- continue;
- }
- }
- merge(to[key], from[key], options, path ? path + '.' + key : key);
- } else if (options.overwrite) {
- to[key] = from[key];
- }
- }
- };
-
- /*!
- * Applies toObject recursively.
- *
- * @param {Document|Array|Object} obj
- * @return {Object}
- * @api private
- */
-
- exports.toObject = function toObject(obj) {
- Document || (Document = require('./document'));
- let ret;
-
- if (obj == null) {
- return obj;
- }
-
- if (obj instanceof Document) {
- return obj.toObject();
- }
-
- if (Array.isArray(obj)) {
- ret = [];
-
- for (let i = 0, len = obj.length; i < len; ++i) {
- ret.push(toObject(obj[i]));
- }
-
- return ret;
- }
-
- if (exports.isPOJO(obj)) {
- ret = {};
-
- for (const k in obj) {
- if (specialProperties.has(k)) {
- continue;
- }
- ret[k] = toObject(obj[k]);
- }
-
- return ret;
- }
-
- return obj;
- };
-
- /*!
- * Determines if `arg` is an object.
- *
- * @param {Object|Array|String|Function|RegExp|any} arg
- * @api private
- * @return {Boolean}
- */
-
- exports.isObject = function(arg) {
- if (Buffer.isBuffer(arg)) {
- return true;
- }
- return Object.prototype.toString.call(arg) === '[object Object]';
- };
-
- /*!
- * Determines if `arg` is a plain old JavaScript object (POJO). Specifically,
- * `arg` must be an object but not an instance of any special class, like String,
- * ObjectId, etc.
- *
- * `Object.getPrototypeOf()` is part of ES5: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/getPrototypeOf
- *
- * @param {Object|Array|String|Function|RegExp|any} arg
- * @api private
- * @return {Boolean}
- */
-
- exports.isPOJO = function isPOJO(arg) {
- if (arg == null || typeof arg !== 'object') {
- return false;
- }
- const proto = Object.getPrototypeOf(arg);
- // Prototype may be null if you used `Object.create(null)`
- // Checking `proto`'s constructor is safe because `getPrototypeOf()`
- // explicitly crosses the boundary from object data to object metadata
- return !proto || proto.constructor.name === 'Object';
- };
-
- /*!
- * Determines if `obj` is a built-in object like an array, date, boolean,
- * etc.
- */
-
- exports.isNativeObject = function(arg) {
- return Array.isArray(arg) ||
- arg instanceof Date ||
- arg instanceof Boolean ||
- arg instanceof Number ||
- arg instanceof String;
- };
-
- /*!
- * Search if `obj` or any POJOs nested underneath `obj` has a property named
- * `key`
- */
-
- exports.hasKey = function hasKey(obj, key) {
- const props = Object.keys(obj);
- for (const prop of props) {
- if (prop === key) {
- return true;
- }
- if (exports.isPOJO(obj[prop]) && exports.hasKey(obj[prop], key)) {
- return true;
- }
- }
- return false;
- };
-
- /*!
- * A faster Array.prototype.slice.call(arguments) alternative
- * @api private
- */
-
- exports.args = sliced;
-
- /*!
- * process.nextTick helper.
- *
- * Wraps `callback` in a try/catch + nextTick.
- *
- * node-mongodb-native has a habit of state corruption when an error is immediately thrown from within a collection callback.
- *
- * @param {Function} callback
- * @api private
- */
-
- exports.tick = function tick(callback) {
- if (typeof callback !== 'function') {
- return;
- }
- return function() {
- try {
- callback.apply(this, arguments);
- } catch (err) {
- // only nextTick on err to get out of
- // the event loop and avoid state corruption.
- process.nextTick(function() {
- throw err;
- });
- }
- };
- };
-
- /*!
- * Returns if `v` is a mongoose object that has a `toObject()` method we can use.
- *
- * This is for compatibility with libs like Date.js which do foolish things to Natives.
- *
- * @param {any} v
- * @api private
- */
-
- exports.isMongooseObject = function(v) {
- Document || (Document = require('./document'));
- MongooseArray || (MongooseArray = require('./types').Array);
- MongooseBuffer || (MongooseBuffer = require('./types').Buffer);
-
- if (v == null) {
- return false;
- }
-
- return v.$__ != null || // Document
- v.isMongooseArray || // Array or Document Array
- v.isMongooseBuffer || // Buffer
- v.$isMongooseMap; // Map
- };
-
- const isMongooseObject = exports.isMongooseObject;
-
- /*!
- * Converts `expires` options of index objects to `expiresAfterSeconds` options for MongoDB.
- *
- * @param {Object} object
- * @api private
- */
-
- exports.expires = function expires(object) {
- if (!(object && object.constructor.name === 'Object')) {
- return;
- }
- if (!('expires' in object)) {
- return;
- }
-
- let when;
- if (typeof object.expires !== 'string') {
- when = object.expires;
- } else {
- when = Math.round(ms(object.expires) / 1000);
- }
- object.expireAfterSeconds = when;
- delete object.expires;
- };
-
- /*!
- * populate helper
- */
-
- exports.populate = function populate(path, select, model, match, options, subPopulate, justOne, count) {
- // might have passed an object specifying all arguments
- let obj = null;
- if (arguments.length === 1) {
- if (path instanceof PopulateOptions) {
- return [path];
- }
-
- if (Array.isArray(path)) {
- const singles = makeSingles(path);
- return singles.map(o => exports.populate(o)[0]);
- }
-
- if (exports.isObject(path)) {
- obj = Object.assign({}, path);
- } else {
- obj = { path: path };
- }
- } else if (typeof model === 'object') {
- obj = {
- path: path,
- select: select,
- match: model,
- options: match
- };
- } else {
- obj = {
- path: path,
- select: select,
- model: model,
- match: match,
- options: options,
- populate: subPopulate,
- justOne: justOne,
- count: count
- };
- }
-
- if (typeof obj.path !== 'string') {
- throw new TypeError('utils.populate: invalid path. Expected string. Got typeof `' + typeof path + '`');
- }
-
- return _populateObj(obj);
-
- // The order of select/conditions args is opposite Model.find but
- // necessary to keep backward compatibility (select could be
- // an array, string, or object literal).
- function makeSingles(arr) {
- const ret = [];
- arr.forEach(function(obj) {
- if (/[\s]/.test(obj.path)) {
- const paths = obj.path.split(' ');
- paths.forEach(function(p) {
- const copy = Object.assign({}, obj);
- copy.path = p;
- ret.push(copy);
- });
- } else {
- ret.push(obj);
- }
- });
-
- return ret;
- }
- };
-
- function _populateObj(obj) {
- if (Array.isArray(obj.populate)) {
- const ret = [];
- obj.populate.forEach(function(obj) {
- if (/[\s]/.test(obj.path)) {
- const copy = Object.assign({}, obj);
- const paths = copy.path.split(' ');
- paths.forEach(function(p) {
- copy.path = p;
- ret.push(exports.populate(copy)[0]);
- });
- } else {
- ret.push(exports.populate(obj)[0]);
- }
- });
- obj.populate = exports.populate(ret);
- } else if (obj.populate != null && typeof obj.populate === 'object') {
- obj.populate = exports.populate(obj.populate);
- }
-
- const ret = [];
- const paths = obj.path.split(' ');
- if (obj.options != null) {
- obj.options = exports.clone(obj.options);
- }
-
- for (let i = 0; i < paths.length; ++i) {
- ret.push(new PopulateOptions(Object.assign({}, obj, { path: paths[i] })));
- }
-
- return ret;
- }
-
- /*!
- * Return the value of `obj` at the given `path`.
- *
- * @param {String} path
- * @param {Object} obj
- */
-
- exports.getValue = function(path, obj, map) {
- return mpath.get(path, obj, '_doc', map);
- };
-
- /*!
- * Sets the value of `obj` at the given `path`.
- *
- * @param {String} path
- * @param {Anything} val
- * @param {Object} obj
- */
-
- exports.setValue = function(path, val, obj, map, _copying) {
- mpath.set(path, val, obj, '_doc', map, _copying);
- };
-
- /*!
- * Returns an array of values from object `o`.
- *
- * @param {Object} o
- * @return {Array}
- * @private
- */
-
- exports.object = {};
- exports.object.vals = function vals(o) {
- const keys = Object.keys(o);
- let i = keys.length;
- const ret = [];
-
- while (i--) {
- ret.push(o[keys[i]]);
- }
-
- return ret;
- };
-
- /*!
- * @see exports.options
- */
-
- exports.object.shallowCopy = exports.options;
-
- /*!
- * Safer helper for hasOwnProperty checks
- *
- * @param {Object} obj
- * @param {String} prop
- */
-
- const hop = Object.prototype.hasOwnProperty;
- exports.object.hasOwnProperty = function(obj, prop) {
- return hop.call(obj, prop);
- };
-
- /*!
- * Determine if `val` is null or undefined
- *
- * @return {Boolean}
- */
-
- exports.isNullOrUndefined = function(val) {
- return val === null || val === undefined;
- };
-
- /*!
- * ignore
- */
-
- exports.array = {};
-
- /*!
- * Flattens an array.
- *
- * [ 1, [ 2, 3, [4] ]] -> [1,2,3,4]
- *
- * @param {Array} arr
- * @param {Function} [filter] If passed, will be invoked with each item in the array. If `filter` returns a falsy value, the item will not be included in the results.
- * @return {Array}
- * @private
- */
-
- exports.array.flatten = function flatten(arr, filter, ret) {
- ret || (ret = []);
-
- arr.forEach(function(item) {
- if (Array.isArray(item)) {
- flatten(item, filter, ret);
- } else {
- if (!filter || filter(item)) {
- ret.push(item);
- }
- }
- });
-
- return ret;
- };
-
- /*!
- * ignore
- */
-
- const _hasOwnProperty = Object.prototype.hasOwnProperty;
-
- exports.hasUserDefinedProperty = function(obj, key) {
- if (obj == null) {
- return false;
- }
-
- if (Array.isArray(key)) {
- for (const k of key) {
- if (exports.hasUserDefinedProperty(obj, k)) {
- return true;
- }
- }
- return false;
- }
-
- if (_hasOwnProperty.call(obj, key)) {
- return true;
- }
- if (key in obj) {
- const v = obj[key];
- return v !== Object.prototype[key] && v !== Array.prototype[key];
- }
-
- return false;
- };
-
- /*!
- * ignore
- */
-
- const MAX_ARRAY_INDEX = Math.pow(2, 32) - 1;
-
- exports.isArrayIndex = function(val) {
- if (typeof val === 'number') {
- return val >= 0 && val <= MAX_ARRAY_INDEX;
- }
- if (typeof val === 'string') {
- if (!/^\d+$/.test(val)) {
- return false;
- }
- val = +val;
- return val >= 0 && val <= MAX_ARRAY_INDEX;
- }
-
- return false;
- };
-
- /*!
- * Removes duplicate values from an array
- *
- * [1, 2, 3, 3, 5] => [1, 2, 3, 5]
- * [ ObjectId("550988ba0c19d57f697dc45e"), ObjectId("550988ba0c19d57f697dc45e") ]
- * => [ObjectId("550988ba0c19d57f697dc45e")]
- *
- * @param {Array} arr
- * @return {Array}
- * @private
- */
-
- exports.array.unique = function(arr) {
- const primitives = {};
- const ids = {};
- const ret = [];
- const length = arr.length;
- for (let i = 0; i < length; ++i) {
- if (typeof arr[i] === 'number' || typeof arr[i] === 'string' || arr[i] == null) {
- if (primitives[arr[i]]) {
- continue;
- }
- ret.push(arr[i]);
- primitives[arr[i]] = true;
- } else if (arr[i] instanceof ObjectId) {
- if (ids[arr[i].toString()]) {
- continue;
- }
- ret.push(arr[i]);
- ids[arr[i].toString()] = true;
- } else {
- ret.push(arr[i]);
- }
- }
-
- return ret;
- };
-
- /*!
- * Determines if two buffers are equal.
- *
- * @param {Buffer} a
- * @param {Object} b
- */
-
- exports.buffer = {};
- exports.buffer.areEqual = function(a, b) {
- if (!Buffer.isBuffer(a)) {
- return false;
- }
- if (!Buffer.isBuffer(b)) {
- return false;
- }
- if (a.length !== b.length) {
- return false;
- }
- for (let i = 0, len = a.length; i < len; ++i) {
- if (a[i] !== b[i]) {
- return false;
- }
- }
- return true;
- };
-
- exports.getFunctionName = function(fn) {
- if (fn.name) {
- return fn.name;
- }
- return (fn.toString().trim().match(/^function\s*([^\s(]+)/) || [])[1];
- };
-
- /*!
- * Decorate buffers
- */
-
- exports.decorate = function(destination, source) {
- for (const key in source) {
- if (specialProperties.has(key)) {
- continue;
- }
- destination[key] = source[key];
- }
- };
-
- /**
- * merges to with a copy of from
- *
- * @param {Object} to
- * @param {Object} fromObj
- * @api private
- */
-
- exports.mergeClone = function(to, fromObj) {
- if (isMongooseObject(fromObj)) {
- fromObj = fromObj.toObject({
- transform: false,
- virtuals: false,
- depopulate: true,
- getters: false,
- flattenDecimals: false
- });
- }
- const keys = Object.keys(fromObj);
- const len = keys.length;
- let i = 0;
- let key;
-
- while (i < len) {
- key = keys[i++];
- if (specialProperties.has(key)) {
- continue;
- }
- if (typeof to[key] === 'undefined') {
- to[key] = exports.clone(fromObj[key], {
- transform: false,
- virtuals: false,
- depopulate: true,
- getters: false,
- flattenDecimals: false
- });
- } else {
- let val = fromObj[key];
- if (val != null && val.valueOf && !(val instanceof Date)) {
- val = val.valueOf();
- }
- if (exports.isObject(val)) {
- let obj = val;
- if (isMongooseObject(val) && !val.isMongooseBuffer) {
- obj = obj.toObject({
- transform: false,
- virtuals: false,
- depopulate: true,
- getters: false,
- flattenDecimals: false
- });
- }
- if (val.isMongooseBuffer) {
- obj = Buffer.from(obj);
- }
- exports.mergeClone(to[key], obj);
- } else {
- to[key] = exports.clone(val, {
- flattenDecimals: false
- });
- }
- }
- }
- };
-
- /**
- * Executes a function on each element of an array (like _.each)
- *
- * @param {Array} arr
- * @param {Function} fn
- * @api private
- */
-
- exports.each = function(arr, fn) {
- for (let i = 0; i < arr.length; ++i) {
- fn(arr[i]);
- }
- };
-
- /*!
- * ignore
- */
-
- exports.noop = function() {};
|