Sign in
chromium
/
devtools
/
devtools-frontend
/
052d2e318ac93c3ca75265763a499f90aaed23fc
/
.
/
node_modules
/
object.fromentries
/
polyfill.js
blob: 1c0c611c61a2d85e9b3654bb297d97e285482dc0 [
file
]
'use strict'
;
var
implementation
=
require
(
'./implementation'
);
module
.
exports
=
function
getPolyfill
()
{
return
typeof
Object
.
fromEntries
===
'function'
?
Object
.
fromEntries
:
implementation
;
};