mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-17 16:15:22 +00:00
13 lines
211 B
JavaScript
13 lines
211 B
JavaScript
/**
|
|
Encode configuration to JSON
|
|
|
|
@param {Config}
|
|
@return {Object}
|
|
*/
|
|
function encodeConfig(config) {
|
|
var values = config.getValues();
|
|
return values.toJS();
|
|
}
|
|
|
|
module.exports = encodeConfig;
|