freeCodeCamp/server/utils/lang-passthrough-urls.js

7 lines
123 B
JavaScript

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