UNPKG
bdjs
Version:
dev (1.0.0-g)
latest (1.0.0-O)
1.0.0
1.0.0-m
1.0.0-l
1.0.0-k
1.0.0-i
1.0.0-h
1.0.0-g
1.0.0-f
1.0.0-e
1.0.0-d
1.0.0-c
1.0.0-O
1.0.0-N
1.0.0-1
A potent package for creating Discord bots.
bdjs
/
dist
/
functions
/
exitProcess.js
10 lines
(9 loc)
•
283 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
const
Function
_1 =
require
(
"../structures/Function"
);
exports
.
default
=
new
Function
_1.
BaseFunction
({
description
:
'Exits the process.'
,
code
:
async
function
(
d
) { process.
exit
(); } });