ohctechv3/.svn/pristine/f6/f6a2e428f6158c9817878432998cb61809393004.svn-base
2024-10-28 15:03:36 +05:30

10 lines
247 B
Plaintext

'use strict';
var implementation = require('./implementation');
module.exports = function getPolyfill() {
return typeof Iterator === 'function' && typeof Iterator.prototype.take === 'function'
? Iterator.prototype.take
: implementation;
};