You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
money is assuming that 'this' will === window in browser environments but this doesn't work with Browserify. As a result, fxSetup can't be accessed and you end up with an error from missing rates.
I changed:
}(this));
To:
}(typeof window === 'undefined' ? this : window));
The text was updated successfully, but these errors were encountered:
money is assuming that 'this' will === window in browser environments but this doesn't work with Browserify. As a result, fxSetup can't be accessed and you end up with an error from missing rates.
I changed:
}(this));
To:
}(typeof window === 'undefined' ? this : window));
The text was updated successfully, but these errors were encountered: