UNPKG
create-iamturns-app
Version:
latest (1.0.0)
1.0.0
App generator for my projects
github.com/iamturns/create-iamturns-app
iamturns/create-iamturns-app
create-iamturns-app
/
src
/
utils
/
process.js
11 lines
(9 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
setupProcess
= (
) => {
// Makes the script crash on unhandled rejections instead of silently ignoring them.
process.
on
(
"unhandledRejection"
,
err
=>
{
throw
err }) }
module
.
exports
= { setupProcess, }