Server IP : 162.213.251.212 / Your IP : 3.133.135.89 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/needapair.com/node_modules/nodemailer/lib/mime-node/ |
Upload File : |
'use strict'; const stream = require('stream'); const Transform = stream.Transform; /** * Ensures that only <LF> is used for linebreaks * * @param {Object} options Stream options */ class LeWindows extends Transform { constructor(options) { super(options); // init Transform this.options = options || {}; } /** * Escapes dots */ _transform(chunk, encoding, done) { let buf; let lastPos = 0; for (let i = 0, len = chunk.length; i < len; i++) { if (chunk[i] === 0x0d) { // \n buf = chunk.slice(lastPos, i); lastPos = i + 1; this.push(buf); } } if (lastPos && lastPos < chunk.length) { buf = chunk.slice(lastPos); this.push(buf); } else if (!lastPos) { this.push(chunk); } done(); } } module.exports = LeWindows;