const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
fetch('https://demo.spreecommerce.org/api/v2/storefront/wishlists/{token}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));