Function newEmitterEvent
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
export function newEmitterEvent(eventStorePayload: EventStorePayload): EmitterEvent {
let querystring: string | null = null;
let postBody: Record<string, unknown> | null = null;
let byteCountGET: number | null = null;
let byteCountPOST: number | null = null;
Function newEmitterEvent
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
export function newEmitterEvent(eventStorePayload: EventStorePayload): EmitterEvent {
let querystring: string | null = null;
let postBody: Record<string, unknown> | null = null;
let byteCountGET: number | null = null;
let byteCountPOST: number | null = null;
- 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 getUTF8Length
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
function getUTF8Length(s: string) {
let len = 0;
for (let i = 0; i < s.length; i++) {
const code = s.charCodeAt(i);
if (code <= 0x7f) {
- 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 getQuerystring
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
function getQuerystring(request: Payload) {
let lowPriorityKeys: { [key: string]: boolean } = { co: true, cx: true };
let args: 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"