UNPKG
lixo.js
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
github.com/Bottomloader/lixo.js
Bottomloader/lixo.js
lixo.js
/
src
/
functions
/
log.js
10 lines
(9 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module.exports = { name:
"$log"
, description:
"Logs a message to the console."
, takesBrackets:
true
, execute:
async
(context,
args
) => {
if
(!
args
[
0
])
return
"Error: $log needs a message to log."
; console.log(
args
[
0
]) } };