Showing 7 of 26 total issues
File index.ts
has 546 lines of code (exceeds 250 allowed). Consider refactoring. Open
import {IDENTITY} from "extra-function";
Function toBaselineIndirect
has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring. Open
function toBaselineIndirect(x: string, fsup: MapFunction, fsub: MapFunction): string {
var a = "", i = 0;
var tmp = "", mode = 0;
fsup = fsup || IDENTITY;
fsub = fsub || IDENTITY;
- 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 levenshteinDistance
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
export function levenshteinDistance(x: string, y: string, ins: number=1, del: number=1, sub: number=1): number {
// 1. Remove common prefix, suffix
var [x, y] = longestUncommonInfixes(x, y);
var X = x.length, Y = y.length;
// 2. Get distance in 1st row
- 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 longestCommonInfix
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
export function longestCommonInfix(x: string, y: string): string {
var ai = 0, al = 0;
for (var i=0, I=x.length; i<I; i++) {
for (var j=0, J=y.length, l=0; j<J; j++) {
l = x[i+l]===y[j]? l+1 : 0;
- 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 rangedMatches
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
function rangedMatches(x: string, y: string, d: number): [string, string] {
// 1. Prepare strike-off buffer
var mx = "", my = "";
var by = Array.from(y);
// 2. Get matches in first string
- 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 damerauLevenshteinDistance
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
export function damerauLevenshteinDistance(x: string, y: string, ins: number=1, del: number=1, sub: number=1, tra: number=1): number {
// 1. Remove common prefix, suffix
var [x, y] = longestUncommonInfixes(x, y);
var X = x.length, Y = y.length
var I = X+2, J = Y+2, L = X+Y;
- 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 toKebabCase
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export function toKebabCase(x: string, re: RegExp | null=null, sep: string="-"): string {
var words = x.split(re || /[^0-9A-Za-z]+/g).filter(IDENTITY);
for (var i=0, I=words.length; i<I; ++i) {
words[i] = words[i].replace(/[A-Z]+/g, m => m.length===1? sep+m : sep+m.slice(0, -1)+sep+m.slice(-1));
if (words[i].startsWith(sep)) words[i] = words[i].slice(sep.length);
- 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"