nodered_cfg/node_modules/core-js/modules/es.set.difference.v2.js

11 lines
402 B
JavaScript
Raw Normal View History

2024-08-24 20:48:14 +02:00
'use strict';
var $ = require('../internals/export');
var difference = require('../internals/set-difference');
var setMethodAcceptSetLike = require('../internals/set-method-accept-set-like');
// `Set.prototype.difference` method
// https://github.com/tc39/proposal-set-methods
$({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('difference') }, {
difference: difference
});