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

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • 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.