mirror of
https://github.com/mblanke/ThreatHunt.git
synced 2026-03-01 22:00:22 -05:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
'use strict';
|
|
|
|
var implementation = require('./implementation');
|
|
|
|
var $Iterator = require('../Iterator');
|
|
|
|
module.exports = function getPolyfill() {
|
|
return typeof $Iterator.zip === 'function' ? $Iterator.zip : implementation;
|
|
};
|