Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Othman (0.25 sec)

  1. .cm/plugins/filters/summaryTable/index.js

        console.log("summaryTable: " + result);
        return result;
    }
    
    function platformsAffected(statistics) {
        // Significance is defined as a platform having more than 10% of the total lines changed
        let totalLinesChanged = statistics.reduce((acc, summary) => acc + summary.additions + summary.deletions, 0);
        let platformHasSignificantChanges = function(summary) {
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. .cm/plugins/filters/byCodeowner/ignore/index.js

                    // >   consumption by fnmatch(3)
                    : '^'
            }
        ],
    
        // two globstars
        [
            // Use lookahead assertions so that we could match more than one `'/**'`
            /\\\/\\\*\\\*(?=\\\/|$)/g,
    
            // Zero, one or several directories
            // should not use '*', or it will be replaced by the next replacer
    
            // Check if it is not the last `'/**'`
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
Back to top