Files
freeCodeCamp/server/utils/lang-passthrough-urls.js
2016-07-28 23:40:01 -07:00

7 lines
123 B
JavaScript

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