8 lines
159 B
Plaintext
8 lines
159 B
Plaintext
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return Array.prototype.flat || implementation;
|
|
};
|