Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
455 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | 'use strict';
|
---|
| 2 | var $ = require('../internals/export');
|
---|
| 3 | var IS_PURE = require('../internals/is-pure');
|
---|
| 4 | var collectionDeleteAll = require('../internals/collection-delete-all');
|
---|
| 5 |
|
---|
| 6 | // `WeakSet.prototype.deleteAll` method
|
---|
| 7 | // https://github.com/tc39/proposal-collection-methods
|
---|
| 8 | $({ target: 'WeakSet', proto: true, real: true, forced: IS_PURE }, {
|
---|
| 9 | deleteAll: function deleteAll(/* ...elements */) {
|
---|
| 10 | return collectionDeleteAll.apply(this, arguments);
|
---|
| 11 | }
|
---|
| 12 | });
|
---|
Note:
See
TracBrowser
for help on using the repository browser.