mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2025-07-29 01:53:48 +07:00
node_modules: update
This commit is contained in:
14
node_modules/nodemailer/lib/shared/index.js
generated
vendored
14
node_modules/nodemailer/lib/shared/index.js
generated
vendored
@ -276,7 +276,7 @@ module.exports.getLogger = (options, defaults) => {
|
||||
* @param {Function} reject Function to run if callback ends with an error
|
||||
*/
|
||||
module.exports.callbackPromise = (resolve, reject) =>
|
||||
function() {
|
||||
function () {
|
||||
let args = Array.from(arguments);
|
||||
let err = args.shift();
|
||||
if (err) {
|
||||
@ -357,7 +357,7 @@ module.exports.resolveContent = (data, key, callback) => {
|
||||
/**
|
||||
* Copies properties from source objects to target objects
|
||||
*/
|
||||
module.exports.assign = function(/* target, ... sources */) {
|
||||
module.exports.assign = function (/* target, ... sources */) {
|
||||
let args = Array.from(arguments);
|
||||
let target = args.shift() || {};
|
||||
|
||||
@ -489,15 +489,7 @@ function createDefaultLogger(levels) {
|
||||
|
||||
message = util.format(message, ...args);
|
||||
message.split(/\r?\n/).forEach(line => {
|
||||
console.log(
|
||||
'[%s] %s %s',
|
||||
new Date()
|
||||
.toISOString()
|
||||
.substr(0, 19)
|
||||
.replace(/T/, ' '),
|
||||
levelNames.get(level),
|
||||
prefix + line
|
||||
);
|
||||
console.log('[%s] %s %s', new Date().toISOString().substr(0, 19).replace(/T/, ' '), levelNames.get(level), prefix + line);
|
||||
});
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user