forked from SpartnerNL/laravel-excel-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1.0.js
33 lines (32 loc) · 725 Bytes
/
1.0.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = [
{
title: 'Getting Started',
collapsable: false,
children: prefix('getting-started', [
'',
'license',
'installation',
'contributing',
'support',
]),
},
{
title: 'Exports',
collapsable: false,
children: prefix('exports', [
'',
'collection',
'store',
'exportables',
'from-query',
'queued',
'mapping',
'heading-row',
'configuration',
'concerns',
]),
},
];
function prefix(prefix, children) {
return children.map(child => `${prefix}/${child}`)
}