source: node_modules/core-js-pure/modules/esnext.set.is-superset-of.v2.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 416 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var isSupersetOf = require('../internals/set-is-superset-of');
4var setMethodAcceptSetLike = require('../internals/set-method-accept-set-like');
5
6// `Set.prototype.isSupersetOf` method
7// https://github.com/tc39/proposal-set-methods
8$({ target: 'Set', proto: true, real: true, forced: !setMethodAcceptSetLike('isSupersetOf') }, {
9 isSupersetOf: isSupersetOf
10});
Note: See TracBrowser for help on using the repository browser.