Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

es.set.symmetric-difference.v2.js 457B

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