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

9 lines
135 B
JavaScript

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