Sign in
chromium
/
devtools
/
devtools-frontend
/
e0f62efefee457a089e49751c4eefb861d1a6f98
/
.
/
node_modules
/
object.values
/
polyfill.js
blob: 2790be43dcd7e1aee9213e50d47917647c9e83b3 [
file
]
'use strict'
;
var
implementation
=
require
(
'./implementation'
);
module
.
exports
=
function
getPolyfill
()
{
return
typeof
Object
.
values
===
'function'
?
Object
.
values
:
implementation
;
};