forked from SpartnerNL/laravel-excel-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3.0.js
38 lines (37 loc) · 857 Bytes
/
3.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
34
35
36
37
38
module.exports = [
{
title: 'Getting Started',
collapsable: false,
children: prefix('getting-started', [
'',
'license',
'installation',
'upgrade',
'contributing',
'support'
]),
},
{
title: 'Exports',
collapsable: false,
children: prefix('exports', [
'',
'collection',
'store',
'export-formats',
'exportables',
'from-query',
'from-view',
'queued',
'multiple-sheets',
'mapping',
'column-formatting',
'concerns',
'extending',
'testing'
]),
},
];
function prefix(prefix, children) {
return children.map(child => `${prefix}/${child}`)
}