UNPKG

react-paysofter

Version:

This is a ReactJS package for integrating Paysofter payment gateway into your ReactJS application.

9 lines (8 loc) 207 B
// GenerateRandomNum.js export const generateRandomNum = (digits) => { let num = ""; for (let i = 0; i < digits; i++) { num += Math.floor(Math.random() * 10).toString(); } return num; };