UNPKG
humpty
Version:
latest (0.0.2)
0.0.2
0.0.1
Makes sure your changelogs mention your breaking changes
humpty
/
dist
/
exitWithCode.js
10 lines
(8 loc)
•
182 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
const
exitWithCode
= (
exitCode =
0
) => { process.
exit
(exitCode); };
exports
.
default
= exitWithCode;