Code

< 40 %
40-60 %
> 60 %
1
const cf = require('./chatFunctions');
2
3
4
exports.checkProtocol = async (event, protocol) => {
5
    return cf.checkProtocol(event, protocol);
6
};
7
8
exports.setSubProtocol = (protocol) => {
9
    return cf.setSubProtocol(protocol);
10
};
11
12
exports.checkText = async (text) => {
13
    return cf.checkText(text);
14
};
15
16 1
exports.outputLog = async (text, t=null, output) => {
17
    return cf.outputLog(text, t, output)
18
};
19