mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 22:16:01 +00:00
14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
'use strict';
|
|
|
|
module.exports = function defaultOptions () {
|
|
return {
|
|
lineDiffThreshold: 5,
|
|
maxDepth: 2,
|
|
indent: null,
|
|
outputOffset: 2,
|
|
anonymous: 'Object',
|
|
circular: '#@Circular#',
|
|
lineSeparator: '\n'
|
|
};
|
|
};
|