CasperSecurity

Current Path : /var/www/hrms.uiet.co.in/node_modules/collect.js/src/methods/
Upload File :
Current File : /var/www/hrms.uiet.co.in/node_modules/collect.js/src/methods/mode.js

'use strict';

module.exports = function mode(key) {
  const values = [];
  let highestCount = 1;

  if (!this.items.length) {
    return null;
  }

  this.items.forEach((item) => {
    const tempValues = values.filter((value) => {
      if (key !== undefined) {
        return value.key === item[key];
      }

      return value.key === item;
    });

    if (!tempValues.length) {
      if (key !== undefined) {
        values.push({ key: item[key], count: 1 });
      } else {
        values.push({ key: item, count: 1 });
      }
    } else {
      tempValues[0].count += 1;
      const { count } = tempValues[0];

      if (count > highestCount) {
        highestCount = count;
      }
    }
  });

  return values
    .filter(value => value.count === highestCount)
    .map(value => value.key);
};
Hacker Blog, Shell İndir, Sql İnjection, XSS Attacks, LFI Attacks, Social Hacking, Exploit Bot, Proxy Tools, Web Shell, PHP Shell, Alfa Shell İndir, Hacking Training Set, DDoS Script, Denial Of Service, Botnet, RFI Attacks, Encryption
Telegram @BIBIL_0DAY