blob: 195d43bac9d7ffb5a520d4adb0b9277fe647ce9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/**
Encode configuration to JSON
@param {Config}
@return {Object}
*/
function encodeConfig(config) {
var values = config.getValues();
return values.toJS();
}
module.exports = encodeConfig;
|