source: node_modules/core-js-pure/modules/esnext.set.is-disjoint-from.v2.js

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

Initial commit

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