Just another native implementation of Base64 in C++ for React-Native. Inspired and enhanced from @craftzdog/eact-native-quick-base64
npm install react-native-fast-base64
import { encode, decode } from 'react-native-fast-base64';
// ...
const encoded = encode('Hello, world!');
const decoded = decode(encoded);
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
Made with create-react-native-library