UNPKG

mailosaur

Version:

The Mailosaur Node library lets you integrate email and SMS testing into your continuous integration process.

10 lines (8 loc) 196 B
class SpamAssassinRule { constructor(data = {}) { this.score = data.score || 0; this.rule = data.rule; this.description = data.description; } } module.exports = SpamAssassinRule;