let formData = {
'items': [{
'quantity': quantity,
'id': productID
}]
};
fetch(window.Shopify.routes.root + 'cart/add.js', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(formData)
}).then((response) => response.json())
.then((product) => {
})
.catch( (error) => )