All files array-includes-shim.js

100% Statements 3/3
50% Branches 1/2
100% Functions 1/1
100% Lines 3/3
1 2 3 4 5 61x 1x 17x      
Eif (!Array.prototype.includes) {
  Array.prototype.includes = function(entry) {
    return this.indexOf(entry) !== -1;
  };
}