mirror of
https://github.com/strapi/strapi.git
synced 2025-07-17 14:02:21 +00:00
8 lines
160 B
JavaScript
8 lines
160 B
JavaScript
![]() |
'use strict';
|
||
|
const logger = require('./logger');
|
||
|
|
||
|
module.exports = function stopProcess(message) {
|
||
|
if (message) logger.error(message);
|
||
|
process.exit(1);
|
||
|
};
|