You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			|  | 6 years ago | |
|---|---|---|
| .. | ||
| index.js | 6 years ago | |
| license | 6 years ago | |
| package.json | 6 years ago | |
| readme.md | 6 years ago | |
		
			
				
				readme.md
			
		
		
			
			
		
	
	clean-yaml-object  
 
Clean up an object prior to serialization.
Replaces circular references, pretty prints Buffers, and numerous other enhancements. Primarily designed to prepare Errors for serialization to JSON/YAML.
Extracted from node-tap
Install
$ npm install --save clean-yaml-object
Usage
const cleanYamlObject = require('clean-yaml-object');
cleanYamlObject(new Error('foo'));
//=> {name: 'Error', message: 'foo', stack: ...}
API
cleanYamlObject(input, [filterFn])
Returns a deep copy of input that is suitable for serialization.
input
Type: *
Any object.
filterFn
Type: callback(propertyName, isRoot, source, target)
Optional filter callback. Returning true will cause the property to be copied. Otherwise it will be skipped
- propertyName: The property being copied.
- isRoot:- trueonly if- sourceis the top level object passed to- copyYamlObject
- source: The source from which- source[propertyName]will be copied.
- target: The target object.