Migrate legacy buffer.atob() and buffer.btoa() APIs
Migrates usage of the legacy APIs buffer.atob() and buffer.btoa() to the current recommended approaches.
Example
Migrating buffer.atob(data)
Before:
js
After:
js
Migrating buffer.btoa(data)
Before:
js
After:
js