It would be great if one could pass an array of product ids to the Monetization.hasProduct function, instead of having to check each product id individually.
Something like this would be awesome:
const m = new Monetization(...);
const productIds = [12345, 23456];
m.hasProduct(productIds, spId)
.then(...)
.catch(...);
It would be great if one could pass an array of product ids to the
Monetization.hasProduct
function, instead of having to check each product id individually.Something like this would be awesome: