Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. return({
  2. brand: (optical[0] == 'Optical') ? brand + ' Optical' : brand,
  3. model,
  4. colRef: item.querySelector('h4.sku').innerText.trim(),
  5. available: checkAvailable(item.querySelector('h4.availability span').className),
  6. colName: frontColour + (lensColour ? ' - ' + lensColour : ''),
  7. img: item.querySelector('div.zoom img').src,
  8. lensProperty: (lensProperty ? 'Polarized' : ''),
  9. price: item.querySelector('h4.prezzo').innerText.trim().replace('€','').replace('.00',''),
  10. provider: 'Kering',
  11. size: item.querySelector('h4.size').innerText.trim().replace(/ /g,'').replace(/-/g,'x').replace('Size','').replace(/mmx/g,'x')
  12. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement