 c177363a19
			
		
	
	c177363a19
	
	
	
		
			
			🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			8 lines
		
	
	
		
			188 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			188 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| var stringify = require('../');
 | |
| 
 | |
| var obj = { d: 6, c: 5, b: [{z:3,y:2,x:1},9], a: 10 };
 | |
| var s = stringify(obj, function (a, b) {
 | |
|     return a.value < b.value ? 1 : -1;
 | |
| });
 | |
| console.log(s);
 |