consthandleError = (error) => {
console.log('OTRN JS: There was an error: ', error);
};
consthandleSignalError = (error) => {
if (error) {
console.log(`OTRN JS: There was an error sending the signal ${error}`);
}
};
export {
handleError,
handleSignalError,
};