UNPKG

braintree-web

Version:

A suite of tools for integrating Braintree in the browser

21 lines (16 loc) 439 B
"use strict"; var BraintreeError = require("./braintree-error"); function convertToBraintreeError(originalErr, btErrorObject) { if (originalErr instanceof BraintreeError) { return originalErr; } return new BraintreeError({ type: btErrorObject.type, code: btErrorObject.code, message: btErrorObject.message, details: { originalError: originalErr, }, }); } module.exports = convertToBraintreeError;