react-native-fiesta
Version:
A set of celebration animations powered by Skia. Engage more with your users by celebrating in your React Native application.
10 lines • 320 B
JavaScript
export function degreesToRadians(degrees) {
var pi = Math.PI;
return degrees * (pi / 180);
}
export function randomIntFromInterval(min, max) {
// min and max included
return Math.floor(Math.random() * (max - min + 1) + min);
}
export const DEFAULT_ANIMATION_DURATION = 6000;
//# sourceMappingURL=confettis.js.map