mirror of
https://github.com/strapi/strapi.git
synced 2025-07-16 13:32:05 +00:00
7 lines
125 B
JavaScript
7 lines
125 B
JavaScript
'use strict';
|
|
|
|
module.exports = function stopProcess(message) {
|
|
if (message) console.error(message);
|
|
process.exit(1);
|
|
};
|