mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 04:00:24 +08:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return Array.prototype.includes || implementation;
|
|
};
|