Files
codeql-action/node_modules/object.values/index.js
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
390 B
JavaScript
Raw Normal View History

2020-09-14 10:42:37 +01:00
'use strict';
var define = require('define-properties');
2021-07-27 16:54:26 +00:00
var callBind = require('call-bind');
2020-09-14 10:42:37 +01:00
var implementation = require('./implementation');
var getPolyfill = require('./polyfill');
var shim = require('./shim');
2021-07-27 16:54:26 +00:00
var polyfill = callBind(getPolyfill(), Object);
2020-09-14 10:42:37 +01:00
define(polyfill, {
getPolyfill: getPolyfill,
implementation: implementation,
shim: shim
});
module.exports = polyfill;