mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-04 00:05:28 -05:00
9 lines
135 B
JavaScript
9 lines
135 B
JavaScript
export default [
|
|
'auth',
|
|
'services',
|
|
'link'
|
|
].reduce((throughs, route) => {
|
|
throughs[route] = true;
|
|
return throughs;
|
|
}, {});
|