GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Code Duplication    Length = 10-23 lines in 2 locations

third-party/js-tools/moment.js/2.24.0/moment.js 2 locations

@@ 1447-1469 (lines=23) @@
1444
                }
1445
                ii = indexOf.call(this._minWeekdaysParse, llc);
1446
                return ii !== -1 ? ii : null;
1447
            } else if (format === 'ddd') {
1448
                ii = indexOf.call(this._shortWeekdaysParse, llc);
1449
                if (ii !== -1) {
1450
                    return ii;
1451
                }
1452
                ii = indexOf.call(this._weekdaysParse, llc);
1453
                if (ii !== -1) {
1454
                    return ii;
1455
                }
1456
                ii = indexOf.call(this._minWeekdaysParse, llc);
1457
                return ii !== -1 ? ii : null;
1458
            } else {
1459
                ii = indexOf.call(this._minWeekdaysParse, llc);
1460
                if (ii !== -1) {
1461
                    return ii;
1462
                }
1463
                ii = indexOf.call(this._weekdaysParse, llc);
1464
                if (ii !== -1) {
1465
                    return ii;
1466
                }
1467
                ii = indexOf.call(this._shortWeekdaysParse, llc);
1468
                return ii !== -1 ? ii : null;
1469
            }
1470
        }
1471
    }
1472
@@ 1425-1434 (lines=10) @@
1422
        }
1423
1424
        if (strict) {
1425
            if (format === 'dddd') {
1426
                ii = indexOf.call(this._weekdaysParse, llc);
1427
                return ii !== -1 ? ii : null;
1428
            } else if (format === 'ddd') {
1429
                ii = indexOf.call(this._shortWeekdaysParse, llc);
1430
                return ii !== -1 ? ii : null;
1431
            } else {
1432
                ii = indexOf.call(this._minWeekdaysParse, llc);
1433
                return ii !== -1 ? ii : null;
1434
            }
1435
        } else {
1436
            if (format === 'dddd') {
1437
                ii = indexOf.call(this._weekdaysParse, llc);