I have the following function in nodeJs v10.6:
#func-1
module.exports.funcOne = (event, context, callback) => {
callback(null, { message: 'funcOne', event });
};
#func-2
module.exports.funcTwo = async (event, context) => {
console...
asked by
03.08.2018 / 21:27