How to use the push function from ip
Find comprehensive JavaScript ip.push code examples handpicked from public code repositorys.
GitHub: PetteriHellman/ipbackend1
177 178 179 180 181 182 183 184 185 186
//const expireDate = Date.now() + body.TTL * 86400 * 1000 //Asetetaan aika ensiksi 10 minuutiksi ja päivitetään oikea aika sitten vasta kun käyttäjä hyväksyy IP:n const expireDate = Date.now() + 600 * 1000 const ip = [] ipAddress.forEach(e => { //pusketaan haetut IP:t (string) muotoiltuun objekti-taulukkoon (IPs) ip.push(new IPs({ desc: body.desc, ip: e, user: user._id, expirationDate: expireDate,
2
0
0
ip.address is the most popular function in ip (635 examples)