module.exports = (msg, maxLength) => [ msg.trim().slice(0, maxLength).trim(), msg.trim().slice(maxLength).trim(), ];