UNPKG

@sergdudko/stripe-js

Version:

Supercharge Your Stripe Integration with Enhanced Methods for stripe-js: Take Full Control of Customer Card Management Right from Your Frontend! Elevate Your Payment Processing Capabilities with Ease and Efficiency.

13 lines (12 loc) 215 B
/** * Response handler * * @param res - fetch response object * @returns */ export const responseHandler = async (res) => { const data = res.json(); if (!res.ok) throw data; return data; };