UNPKG

react-native-confetti-cannon

Version:

React Native confetti explosion and fall like iOS does.

10 lines (7 loc) 255 B
// @flow export const randomValue = (min: number, max: number): number => { return Math.random() * (max - min) + min; }; export const randomColor = (colors: Array<string>): string => { return colors[Math.round(randomValue(0, colors.length - 1))] };