UNPKG
gofigure
Version:
latest (2.0.2)
2.0.2
2.0.1
2.0.0
1.0.0
0.2.1
0.2.0
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
Configuration library for node
c2fo.github.com/gofigure
C2FO/gofigure
gofigure
/
lib
/
loader
/
loaderHelpers.js
8 lines
(5 loc)
•
164 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
const
_ =
require
(
'lodash'
);
const
mergeConfigs
= (
configs
) => configs.
reduce
(
(
config, newC
) =>
_.
merge
(config, newC), {});
module
.
exports
= { mergeConfigs, };