UNPKG

vinmonopolet-ts

Version:

Extracts information on products, categories and stores from Vinmonopolet

7 lines (6 loc) 220 B
import promiseMap from "promise-map-limit"; import getProduct from "./getProduct"; const getProductsByIds = (ids, limit) => { return promiseMap(ids, limit || 5, getProduct); }; export default getProductsByIds;