source: node_modules/core-js-pure/modules/esnext.set.difference.v2.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 402 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var difference = require('../internals/set-difference');
4var setMethodAcceptSetLike = require('../internals/set-method-accept-set-like');
5
6// `Set.prototype.difference` method
7// https://github.com/tc39/proposal-set-methods
8$({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('difference') }, {
9 difference: difference
10});
Note: See TracBrowser for help on using the repository browser.