1
0
mirror of https://github.com/eleith/emailjs.git synced 2024-07-07 12:40:37 +00:00

remove path.existsSync reference

This commit is contained in:
Zack Schuster 2018-06-24 19:28:30 -07:00
parent 01d37c81e0
commit 5e00d7d9e8

View File

@ -1,7 +1,6 @@
const { Stream } = require('stream');
const fs = require('fs');
const os = require('os');
const path = require('path');
const mimeWordEncode = require('emailjs-mime-codec').mimeWordEncode;
const addressparser = require('addressparser');
const { getRFC2822Date } = require('./date');
@ -133,8 +132,7 @@ class Message {
this.attachments.forEach(attachment => {
if (attachment.path) {
// migrating path->fs for existsSync)
if (!(fs.existsSync || path.existsSync)(attachment.path)) {
if (fs.existsSync(attachment.path) == false) {
failed.push(`${attachment.path} does not exist`);
}
} else if (attachment.stream) {