Generates random phone num or phone num lists
npm install mobiledictsconst mobile = require('mobiledicts')
// generate a random phone num
var randMobile = mobile.getMobile();
// generate a random phone num list
var randMobileList = mobile.getMobileList(10)
console.info(randMobile, randMobileList)
/**
18954170500
[
'13003188526',
'13356524390',
'13229854259',
'13811642943',
'18729226406',
'13155841682',
'13012352257',
'13742555345',
'13525254960',
'13746916987'
]
**/