first
This commit is contained in:
12
node_modules/core-js/modules/esnext.array.unique-by.js
generated
vendored
Normal file
12
node_modules/core-js/modules/esnext.array.unique-by.js
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
'use strict';
|
||||
var $ = require('../internals/export');
|
||||
var addToUnscopables = require('../internals/add-to-unscopables');
|
||||
var uniqueBy = require('../internals/array-unique-by');
|
||||
|
||||
// `Array.prototype.uniqueBy` method
|
||||
// https://github.com/tc39/proposal-array-unique
|
||||
$({ target: 'Array', proto: true, forced: true }, {
|
||||
uniqueBy: uniqueBy
|
||||
});
|
||||
|
||||
addToUnscopables('uniqueBy');
|
Reference in New Issue
Block a user