Nodejs Array Push pushTab(tab)

Here you can find the source of pushTab(tab)

Method Source Code

Array.prototype.pushTab = function(tab) {
   this.pushIfNotExist(tab, function(t) 
      {return t.title === tab.title && t.url === tab.url;});   
};

Related

  1. cutAndPush(f,xs)
    'use strict';
    Array.prototype.cutAndPush = function(f,xs) {
      var i = 0;
      while (i < this.length) {
        if (f(this[i])) {
          xs.push(this[i]);
          this.splice(i,1);
        } else {
          i++;
    ...
    
  2. pushArrayIfNotExist(element)
    Array.prototype.pushArrayIfNotExist = function(element) { 
      if (!this.ifArrayInArray (element)) {
        this.push(element);
    };
    
  3. pushRange(_items)
    Array.prototype.pushRange = function (_items) {
        for (var l = 0; l < _items.length; l++) {
            this.push(_items[l]);
    };
    
  4. pushRange(arr)
    Array.prototype.pushRange = function(arr) {
        this.push.apply(this, arr);
    };
    
  5. pushString(str)
    Array.prototype.pushString = function(str) {
      let data = encodeString(str);
      let ii = 0;
      let length = data.length;
      for (; ii < length; ++ii) {
        this.push(data[ii]);
      };
      return void 0;