mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-21 19:49:48 -04:00
13 lines
307 B
JavaScript
13 lines
307 B
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
|
|
exports.default = function (coll) {
|
|
return iteratorSymbol && coll[iteratorSymbol] && coll[iteratorSymbol]();
|
|
};
|
|
|
|
var iteratorSymbol = typeof Symbol === 'function' && Symbol.iterator;
|
|
|
|
module.exports = exports['default']; |