mirror of
				https://github.com/strapi/strapi.git
				synced 2025-10-31 18:08:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			161 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			161 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| 'use strict';
 | |
| 
 | |
| const logger = require('./logger');
 | |
| 
 | |
| module.exports = function stopProcess(message) {
 | |
|   if (message) logger.error(message);
 | |
|   process.exit(1);
 | |
| };
 | 
