UNPKG

lambda-monitor

Version:

Lambda log monitoring and streaming to external services.

12 lines (10 loc) 240 B
import axios from '@blackflux/axios'; export default (() => { const queue = []; return { enqueue: (...args) => { queue.push(args); }, flush: () => Promise.all(queue.splice(0).map((args) => axios(...args))) }; })();