// http://prettydiff.com/.prettydiffrc // // JSON format is supported, so please feel free to replace the contents of // this file with JSON. Example: // // {"indent_size": 3, "wrap":80} // // Instead, you can also define the values using logic into the space // provided. Example: // // option.indent_size = 3; // if (option.mode === "beautify" || option.lang === "auto") { // option.wrap = 120; // } // // Only accepts documented option names with values in documented data types. (function rc() { "use strict"; const rclogic = function rc_logic(options) { // edit below this line // edit above this line return options; }; module.exports = rclogic; }());