Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bhar (0.12 sec)

  1. .cm/plugins/filters/byCodeowner/ignore/index.js

                // '\\[bar]' -> '\\\\[bar\\]'
                ? `\\[${range}${cleanRangeBackSlash(endEscape)}${close}`
                : close === ']'
                    ? endEscape.length % 2 === 0
                        // A normal case, and it is a range notation
                        // '[bar]'
                        // '[bar\\\\]'
                        ? `[${sanitizeRange(range)}${endEscape}]`
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. .cm/plugins/filters/summaryTable/index.js

        let totalDeletions = Object.values(preppedStatistics).reduce((acc, summary) => acc + summary.deletions, 0);
        let newRatio = totalAdditions / (totalAdditions + totalDeletions) * 100;
    
        let result = `:bar_chart: **Changes by ${title}: this PR is ${Math.round(newRatio, 2)}% new code**`;
    
        // Only title by Platform
        if (title === "Platform") {
            result += `
      <br>${platformsAffected(preppedStatistics)}`;
        }
    
    JavaScript
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top