1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-11-14 03:30:18 +00:00
musix-oss/node_modules/core-js/internals/get-set-iterator.js
2019-10-10 16:43:04 +03:00

8 lines
243 B
JavaScript

var IS_PURE = require('../internals/is-pure');
var getIterator = require('../internals/get-iterator');
module.exports = IS_PURE ? getIterator : function (it) {
// eslint-disable-next-line no-undef
return Set.prototype.values.call(it);
};