funcunit
Version:
<!-- @hide title
18 lines (13 loc) • 293 B
JavaScript
var DEFAULT = 3;
module.exports = function(config, options, isMain){
if(isMain && isNumber(config.mainDepth)) {
return config.mainDepth;
}
if(isNumber(options.bundleDepth)) {
return options.bundleDepth;
}
return DEFAULT;
};
function isNumber(x) {
return typeof x === "number";
}