mirror of
https://github.com/github/codeql-action.git
synced 2025-12-26 09:10:07 +08:00
8 lines
191 B
JavaScript
8 lines
191 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return typeof Object.entries === 'function' ? Object.entries : implementation;
|
|
};
|