UNPKG

421 BJavaScriptView Raw
1'use strict'
2
3var setupDefaults = {
4 cookies: {
5 path: '/'
6 },
7 treeOptions: {
8 parentKey: 'parentId',
9 key: 'id',
10 children: 'children'
11 },
12 formatString: 'yyyy-MM-dd HH:mm:ss',
13 dateDiffRules: [
14 ['yyyy', 31536000000],
15 ['MM', 2592000000],
16 ['dd', 86400000],
17 ['HH', 3600000],
18 ['mm', 60000],
19 ['ss', 1000],
20 ['S', 0]
21 ]
22}
23
24module.exports = setupDefaults