UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

9 lines (8 loc) 243 B
export const setSocketKeepAlive = (request, { keepAlive, keepAliveMsecs }) => { if (keepAlive !== true) { return; } request.on("socket", (socket) => { socket.setKeepAlive(keepAlive, keepAliveMsecs || 0); }); };