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

9 lines
135 B
JavaScript
Raw Normal View History

2016-06-17 19:35:10 +00:00
export default [
'auth',
'services',
'link'
2016-06-23 23:57:26 +00:00
].reduce((throughs, route) => {
throughs[route] = true;
return throughs;
2016-06-23 23:57:26 +00:00
}, {});