UNPKG
scutum
Version:
latest (0.0.2)
0.0.2
Another OpenPGP command line tool like GPG.
github.com/neoatlantis/scutum
neoatlantis/scutum
scutum
/
scutum
/
io
/
stderr.js
12 lines
(11 loc)
•
272 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
.
throw
=
function
(
e
){
if
(
typeof
process !=
"undefined"
){ e = e.
toUpperCase
();
if
(e !=
"OK"
){ process.
stderr
.
write
(e +
"\n"
); process.
exit
(
1
);
// TODO
} process.
exit
(
0
); }
throw
Error
(e); };