Last change
on this file since b738035 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
358 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 }, {
|
---|
9 | uniqueBy: uniqueBy
|
---|
10 | });
|
---|
11 |
|
---|
12 | addToUnscopables('uniqueBy');
|
---|
Note:
See
TracBrowser
for help on using the repository browser.