14 lines
283 B
JavaScript
14 lines
283 B
JavaScript
function isDmOnEnvelope(envelope) {
|
|
const members =
|
|
envelope.bcc?.length +
|
|
envelope.cc?.length +
|
|
envelope.to?.length +
|
|
envelope.sender?.length +
|
|
envelope.from?.length;
|
|
return members === 2;
|
|
}
|
|
|
|
module.exports = {
|
|
isDmOnEnvelope,
|
|
};
|