vinmonopolet-ts
Version:
Extracts information on products, categories and stores from Vinmonopolet
12 lines (11 loc) • 562 B
JavaScript
import PopulatedStore from "./PopulatedStore";
export function toPopulatedStore(storeDTO) {
return new PopulatedStore(storeDTO.name, storeDTO.displayName, storeDTO.address.line1, storeDTO.address.postalCode, storeDTO.address.town, storeDTO.geoPoint.latitude, storeDTO.geoPoint.longitude, storeDTO.assortment, storeDTO.openingTimes.map(toOpeningHours));
}
function toOpeningHours(openingTimeDTO) {
return {
closes: openingTimeDTO.closingTime,
opens: openingTimeDTO.openingTime,
weekDay: openingTimeDTO.weekDay,
};
}