Showing 53 of 53 total issues
Function convert
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Dynamic.convert = function(val, toType, ctx) {
if (Array.isArray(toType)) {
if (!Array.isArray(val)) {
if (val === undefined || val === '') {
val = [];
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function coerceAccepts
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
function coerceAccepts(uarg, desc) {
var name = desc.name || desc.arg;
var targetType = convertToBasicType(desc.type);
var targetTypeIsArray = _.isArray(targetType) && targetType.length === 1;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function add
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Entity.prototype.add = function() {
// ...names, options, fn
var message = '\'%s\' is not a valid string';
var self = this;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function ApiMethod
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function ApiMethod(name, options, fn) {
this.__original = [name, options, fn];
this.fn = fn;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this function. Open
if (isint.test(str) && str.charAt(0) !== '0') return parseInt(str, 10);
Avoid too many return
statements within this function. Open
return callback(err);
Avoid too many return
statements within this function. Open
return cb(e);
Avoid too many return
statements within this function. Open
return str;
Avoid too many return
statements within this function. Open
return 'object';
Avoid too many return
statements within this function. Open
return uarg;
Avoid too many return
statements within this function. Open
if (isfloat.test(str)) return parseFloat(str, 10);
Function coerce
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function coerce(str) {
if (typeof str !== 'string') return str;
if ('null' === str) return null;
if ('true' === str) return true;
if ('false' === str) return false;
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function toXML
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function toXML(input) {
var xml;
if (input && typeof input.toXML === 'function') {
xml = input.toXML();
} else {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"