source: node_modules/core-js-pure/modules/esnext.array.unique-by.js

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: 372 bytes
Line 
1'use strict';
2var $ = require('../internals/export');
3var addToUnscopables = require('../internals/add-to-unscopables');
4var 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
12addToUnscopables('uniqueBy');
Note: See TracBrowser for help on using the repository browser.