mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-24 13:01:24 +01:00
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return Array.prototype.includes || implementation;
|
|
};
|