UNPKG

lambda-live-debugger

Version:

Debug Lambda functions locally like it is running in the cloud

7 lines (6 loc) 162 B
export function quoteHeader(part) { if (part.includes(",") || part.includes('"')) { part = `"${part.replace(/"/g, '\\"')}"`; } return part; }