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.union.v2.js 372B

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