UNPKG

@kelibst/allpaymentmodule

Version:

A nodejs payment module for all the available payment systems.

9 lines (8 loc) 211 B
function randomNoGenerator(min, max) { if (typeof max !== "number" && typeof min !== "number") { min = 0; max = 1; } return Math.random() * (max - min) + min; } module.exports = randomNoGenerator;