You need to sign in or sign up before continuing.
polyfill.js 163 Bytes
'use strict';

var implementation = require('./implementation');

module.exports = function getPolyfill() {
	return Array.prototype.includes || implementation;
};