UNPKG
humpty
Version:
latest (0.0.2)
0.0.2
0.0.1
Makes sure your changelogs mention your breaking changes
humpty
/
src
/
exitWithCode.js
6 lines
(4 loc)
•
100 B
JavaScript
View Raw
1
2
3
4
5
6
const
exitWithCode = (exitCode =
0
) => { process.
exit
(exitCode); };
export
default
exitWithCode;