source: imaps-frontend/node_modules/core-js/modules/esnext.set.intersection.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 531 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var call = require('../internals/function-call');
4var toSetLike = require('../internals/to-set-like');
5var $intersection = require('../internals/set-intersection');
6
7// `Set.prototype.intersection` method
8// https://github.com/tc39/proposal-set-methods
9// TODO: Obsolete version, remove from `core-js@4`
10$({ target: 'Set', proto: true, real: true, forced: true }, {
11 intersection: function intersection(other) {
12 return call($intersection, this, toSetLike(other));
13 }
14});
Note: See TracBrowser for help on using the repository browser.