UNPKG

react-native-ads

Version:

A react-native component for Google AdMob banners and interstitials

7 lines (6 loc) 226 B
export const createErrorFromErrorData = (errorData) => { const { message, ...extraErrorInfo } = errorData || {}; const error = new Error(message); error.framesToPop = 1; return Object.assign(error, extraErrorInfo); };