UNPKG

moltin-util

Version:

Tool for working with the Moltin API

17 lines (14 loc) 374 B
var joinUrl = require('url-join'); var base = 'https://api.molt.in/v1/'; var endpoints = { 'BASE': base, 'PRODUCTS': 'products', 'IMAGES': 'files', 'CATEGORIES': 'categories', 'TAXES': 'taxes', 'FLOWS': 'flows' }; module.exports = Object.keys(endpoints).reduce( (acc, k) => { acc[k] = k === 'BASE' ? base : joinUrl(base, endpoints[k]); return acc; }, {});