You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							29 lines
						
					
					
						
							651 B
						
					
					
				
			
		
		
	
	
							29 lines
						
					
					
						
							651 B
						
					
					
				'use strict';
 | 
						|
 | 
						|
/*!
 | 
						|
 * ignore
 | 
						|
 */
 | 
						|
 | 
						|
module.exports = function cleanModifiedSubpaths(doc, path, options) {
 | 
						|
  options = options || {};
 | 
						|
  const skipDocArrays = options.skipDocArrays;
 | 
						|
 | 
						|
  let deleted = 0;
 | 
						|
  if (!doc) {
 | 
						|
    return deleted;
 | 
						|
  }
 | 
						|
  for (const modifiedPath of Object.keys(doc.$__.activePaths.states.modify)) {
 | 
						|
    if (skipDocArrays) {
 | 
						|
      const schemaType = doc.$__schema.path(modifiedPath);
 | 
						|
      if (schemaType && schemaType.$isMongooseDocumentArray) {
 | 
						|
        continue;
 | 
						|
      }
 | 
						|
    }
 | 
						|
    if (modifiedPath.startsWith(path + '.')) {
 | 
						|
      delete doc.$__.activePaths.states.modify[modifiedPath];
 | 
						|
      ++deleted;
 | 
						|
    }
 | 
						|
  }
 | 
						|
  return deleted;
 | 
						|
};
 |