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';
|
---|
2 | var $ = require('../internals/export');
|
---|
3 | var isSupersetOf = require('../internals/set-is-superset-of');
|
---|
4 | var 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.