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

9 lines
135 B
JavaScript

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