-
Notifications
You must be signed in to change notification settings - Fork 99
/
.hygen.js
49 lines (44 loc) · 1.26 KB
/
.hygen.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
39
40
41
42
43
44
45
46
47
48
49
const Path = require('path')
const PROJ_ROOT = __dirname
const resolveApp = (...paths) => Path.resolve(PROJ_ROOT, ...paths)
module.exports = {
templates: resolveApp('.hygen'),
helpers: {
root: () => __dirname,
uiDir: (to) => resolveApp('packages/ui', to),
utilsDir: (to) => resolveApp('packages/utils', to),
hooksDir: (to) => resolveApp('packages/hooks', to),
camelCase: (function () {
const cache = {}
return function (str) {
if (!str) return ''
if (cache[str]) return cache[str]
return (cache[str] = str
.replace(/-([a-z])/g, (_, i) => i.toUpperCase())
.replace(/^([a-z])/, (_, i) => i.toUpperCase())
)
}
})(),
hump: (function () {
const cache = {}
return function (str) {
if (!str) return ''
if (cache[str]) return cache[str]
return (cache[str] = str
.replace(/-([a-z])/g, (_, i) => i.toUpperCase())
)
}
})(),
capt: (function () {
const cache = {}
return function (str) {
if (!str) return ''
if (cache[str]) return cache[str]
return (cache[str] = str
.replace(/-/g, '_')
.replace(/([a-z])/g, (_, i) => i.toUpperCase())
)
}
})(),
},
}