UNPKG
@nestjs/config
Version:
latest (4.0.4)
next (12.0.0-next.0)
12.0.0-next.0
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.3.0
3.2.3
3.2.2
3.2.1
3.2.0
3.1.1
3.1.0
3.0.1
3.0.0
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.0
2.0.1
2.0.0
1.2.1
1.2.0
1.1.7
1.1.6
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
0.6.3
0.6.2
0.6.1
0.6.0
0.5.0
0.4.2
0.4.1
0.4.0
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Nest - modern, fast, powerful node.js web framework (@config)
github.com/nestjs/config
nestjs/config
@nestjs/config
/
dist
/
utils
/
get-config-token.util.js
10 lines
(9 loc)
•
224 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
getConfigToken
= getConfigToken;
/** *
@publicApi
*/
function
getConfigToken
(
token
) {
return
`CONFIGURATION(
${token.toString()}
)`
; }