UNPKG

froebel

Version:
5 lines (4 loc) 287 B
/** Checks if `result` (returned from `Promise.allSettled`) is fulfilled. */ export const isFulfilled = result => result.status === "fulfilled"; /** Checks if `result` (returned from `Promise.allSettled`) is rejected. */ export const isRejected = result => result.status === "rejected";