mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2024-11-10 15:04:45 +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'
|
||
|
};
|
||
|
};
|