All files polyfill.js

100% Statements 3/3
50% Branches 1/2
100% Functions 1/1
100% Lines 3/3
1 2 3 4 5 6 7 8    1x   1x 2x    
'use strict';
 
var implementation = require('./implementation');
 
module.exports = function getPolyfill() {
	return Array.prototype.includes || implementation;
};