trackers/javascript-tracker/src/in_queue.ts
Function InQueueManager
has a Cognitive Complexity of 72 (exceeds 5 allowed). Consider refactoring. Open
Open
export function InQueueManager(functionName: string, asyncQueue: Array<unknown>): Queue {
const windowAlias = window,
documentAlias = document,
sharedState: SharedState = createSharedState(),
availableTrackerIds: Array<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 InQueueManager
has 200 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function InQueueManager(functionName: string, asyncQueue: Array<unknown>): Queue {
const windowAlias = window,
documentAlias = document,
sharedState: SharedState = createSharedState(),
availableTrackerIds: Array<string> = [],
Function addPlugin
has 76 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function addPlugin(parameterArray: Array<unknown>, trackerIdentifiers: Array<string>) {
function postScriptHandler(scriptSrc: string) {
if (Object.prototype.hasOwnProperty.call(pendingPlugins, scriptSrc)) {
windowAlias.clearTimeout(pendingPlugins[scriptSrc].timeout);
delete pendingPlugins[scriptSrc];
Function applyAsyncFunction
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function applyAsyncFunction(...args: any[]) {
// Outer loop in case someone push'es in zarg of arrays
for (let i = 0; i < args.length; i += 1) {
let parameterArray = args[i],
input = Array.prototype.shift.call(parameterArray);