Code Duplication    Length = 1-1 lines in 4 locations

node_modules/mocha/mocha.js 1 location

@@ 14534-14534 (lines=1) @@
14531
        case 3:
14532
          secondByte = buf[i + 1]
14533
          thirdByte = buf[i + 2]
14534
          if ((secondByte & 0xC0) === 0x80 && (thirdByte & 0xC0) === 0x80) {
14535
            tempCodePoint = (firstByte & 0xF) << 0xC | (secondByte & 0x3F) << 0x6 | (thirdByte & 0x3F)
14536
            if (tempCodePoint > 0x7FF && (tempCodePoint < 0xD800 || tempCodePoint > 0xDFFF)) {
14537
              codePoint = tempCodePoint

node_modules/@sailshq/lodash/lib/index.js 2 locations

@@ 3987-3987 (lines=1) @@
3984
            othCtor = other.constructor;
3985
3986
        // Non `Object` object instances with different constructors are not equal.
3987
        if (objCtor != othCtor &&
3988
            ('constructor' in object && 'constructor' in other) &&
3989
            !(typeof objCtor == 'function' && objCtor instanceof objCtor &&
3990
              typeof othCtor == 'function' && othCtor instanceof othCtor)) {
@@ 2987-2987 (lines=1) @@
2984
            isDef = computed !== undefined,
2985
            isReflexive = computed === computed;
2986
2987
        if (valIsNaN) {
2988
          var setLow = isReflexive || retHighest;
2989
        } else if (valIsNull) {
2990
          setLow = isReflexive && isDef && (retHighest || computed != null);

node_modules/strip-json-comments/strip-json-comments.js 1 location

@@ 37-37 (lines=1) @@
34
			} else if (insideComment === 'single' && currentChar + nextChar === '\r\n') {
35
				insideComment = false;
36
				i++;
37
			} else if (insideComment === 'single' && currentChar === '\n') {
38
				insideComment = false;
39
			} else if (!insideComment && currentChar + nextChar === '/*') {
40
				insideComment = 'multi';