esnext.set.is-disjoint-from.v2.js 428 B

12345678910
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var isDisjointFrom = require('../internals/set-is-disjoint-from');
  4. var setMethodAcceptSetLike = require('../internals/set-method-accept-set-like');
  5. // `Set.prototype.isDisjointFrom` method
  6. // https://github.com/tc39/proposal-set-methods
  7. $({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('isDisjointFrom') }, {
  8. isDisjointFrom: isDisjointFrom
  9. });