mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
11 lines
402 B
JavaScript
11 lines
402 B
JavaScript
'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
|
|
});
|