yopmail-helper
Version:
yopmail helper. It will help you receive the mail content.
19 lines (15 loc) • 455 B
JavaScript
const axios = require('axios');
async function getVersion() {
const response = await axios({
method: 'get',
url: 'https://yopmail.com',
headers: {
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',
},
});
const match = response.data.match(/\/ver\/(\d+\.\d+)\//);
return match ? match[1] + '' : null;
}
module.exports = {
getVersion,
};