5c46ea69eb5a0b0d09e494090393b973634d30c7b5bb6c0c49e73da0d7542a027f7579017d7bcf790d51764e933364e990bed9ba5b6d48a5068565cd777b6d 545 B

1234567891011121314
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var call = require('../internals/function-call');
  4. var toSetLike = require('../internals/to-set-like');
  5. var $isDisjointFrom = require('../internals/set-is-disjoint-from');
  6. // `Set.prototype.isDisjointFrom` method
  7. // https://github.com/tc39/proposal-set-methods
  8. // TODO: Obsolete version, remove from `core-js@4`
  9. $({ target: 'Set', proto: true, real: true, forced: true }, {
  10. isDisjointFrom: function isDisjointFrom(other) {
  11. return call($isDisjointFrom, this, toSetLike(other));
  12. }
  13. });