|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
316 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 | var getBuiltIn = require('../internals/get-built-in');
|
|---|
| 3 | var caller = require('../internals/caller');
|
|---|
| 4 |
|
|---|
| 5 | var Set = getBuiltIn('Set');
|
|---|
| 6 | var SetPrototype = Set.prototype;
|
|---|
| 7 |
|
|---|
| 8 | module.exports = {
|
|---|
| 9 | Set: Set,
|
|---|
| 10 | add: caller('add', 1),
|
|---|
| 11 | has: caller('has', 1),
|
|---|
| 12 | remove: caller('delete', 1),
|
|---|
| 13 | proto: SetPrototype
|
|---|
| 14 | };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.