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.
		
		
		
		
		
			
		
			
				
					
					
						
							21 lines
						
					
					
						
							422 B
						
					
					
				
			
		
		
	
	
							21 lines
						
					
					
						
							422 B
						
					
					
				'use strict'
 | 
						|
 | 
						|
module.exports = state
 | 
						|
 | 
						|
function state (o) {
 | 
						|
  const {
 | 
						|
    secret,
 | 
						|
    censor,
 | 
						|
    compileRestore,
 | 
						|
    serialize,
 | 
						|
    groupRedact,
 | 
						|
    nestedRedact,
 | 
						|
    wildcards,
 | 
						|
    wcLen
 | 
						|
  } = o
 | 
						|
  const builder = [{ secret, censor, compileRestore }]
 | 
						|
  if (serialize !== false) builder.push({ serialize })
 | 
						|
  if (wcLen > 0) builder.push({ groupRedact, nestedRedact, wildcards, wcLen })
 | 
						|
  return Object.assign(...builder)
 | 
						|
}
 |