react-native-fast-random-bytes
v0.1.0
Published
Support for Random
Readme
react-native-fast-random-bytes
Support for Random
Installation
npm install react-native-fast-random-bytesUsage
import { Text, View, StyleSheet } from 'react-native';
import { randomBytesBase64 } from 'react-native-fast-random-bytes';
export default function App() {
return (
<View style={styles.container}>
<Text>Random Bytes: {randomBytesBase64(45)}</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});
License
MIT
