Vadim Deryabin

Results 2 comments of Vadim Deryabin

Prepared the PR for it: https://github.com/beatrichartz/csv/pull/100 Implemented 2 approaches with _String.to_existing_atom_ as _safe_ and _String.to_atom_ as an _unsafe_ one. Please review.

Here is the workaround: ``` import b2cauth from 'react-azure-adb2c'; import decodeJWT from 'jwt-decode'; ... currentUser() { let token = b2cauth.getAccessToken(); const decoded = decodeJWT(token); return { firstName: decoded.given_name, lastName: decoded.family_name,...