mirror of
				https://github.com/Theodor-Springmann-Stiftung/kgpz_web.git
				synced 2025-10-31 01:55:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			276 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			276 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict'
 | |
| 
 | |
| const { stringify } = require('jsonfile/utils')
 | |
| const { outputFileSync } = require('../output-file')
 | |
| 
 | |
| function outputJsonSync (file, data, options) {
 | |
|   const str = stringify(data, options)
 | |
| 
 | |
|   outputFileSync(file, str, options)
 | |
| }
 | |
| 
 | |
| module.exports = outputJsonSync
 | 
