Sign in
chromium
/
devtools
/
devtools-frontend
/
4e41c1c367239f5d2aec4fe63b2600a0ecd38604
/
.
/
node_modules
/
array-includes
/
polyfill.js
blob: dfbaa428998e75e7a21231cdc44c5aa31c5e948d [
file
] [
log
] [
blame
]
'use strict'
;
var
implementation
=
require
(
'./implementation'
);
module
.
exports
=
function
getPolyfill
()
{
return
Array
.
prototype
.
includes
||
implementation
;
};