Files
freeCodeCamp/api-server/server/utils/lang-passthrough-urls.js
2019-02-19 14:30:27 +05:30

5 lines
127 B
JavaScript

export default ['auth', 'services', 'link'].reduce((throughs, route) => {
throughs[route] = true;
return throughs;
}, {});