* Check that a value isn't undefined and is an array.
(propertyName, value)
| 666 | * Check that a value isn't undefined and is an array. |
| 667 | */ |
| 668 | _doArrayCheck(propertyName, value) { |
| 669 | return this._checkProperty( |
| 670 | propertyName, |
| 671 | value, |
| 672 | [this._checkUndefined, this._createCheckThatThrows(Array.isArray, 'Array expected for`' + propertyName + '`')]); |
| 673 | } |
| 674 | |
| 675 | /** |
| 676 | * Set the replyToList from email body |
no test coverage detected