|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
372 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 | var $ = require('../internals/export');
|
|---|
| 3 | var addToUnscopables = require('../internals/add-to-unscopables');
|
|---|
| 4 | var uniqueBy = require('../internals/array-unique-by');
|
|---|
| 5 |
|
|---|
| 6 | // `Array.prototype.uniqueBy` method
|
|---|
| 7 | // https://github.com/tc39/proposal-array-unique
|
|---|
| 8 | $({ target: 'Array', proto: true, forced: true }, {
|
|---|
| 9 | uniqueBy: uniqueBy
|
|---|
| 10 | });
|
|---|
| 11 |
|
|---|
| 12 | addToUnscopables('uniqueBy');
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.