small typing correction
This commit is contained in:
@ -78,7 +78,7 @@ const formatAndTypeMessage = (message) => {
|
|||||||
if (typeof arg === 'number')
|
if (typeof arg === 'number')
|
||||||
return {type: 'f', value: arg};
|
return {type: 'f', value: arg};
|
||||||
if (typeof arg === 'boolean')
|
if (typeof arg === 'boolean')
|
||||||
return {type: 'f', value: arg ? 1 : 0};
|
return value ? {type: 'T', value: true} : {type: 'F', value: false};
|
||||||
})
|
})
|
||||||
|
|
||||||
newMessage.args = args
|
newMessage.args = args
|
||||||
|
|||||||
Reference in New Issue
Block a user