Bump to v4.4.0.

This commit is contained in:
John-David Dalton
2016-04-12 23:55:57 -07:00
parent 04e08670ed
commit fb1f99d9d9
415 changed files with 36968 additions and 4619 deletions

View File

@@ -1,4 +1,4 @@
# lodash.sorteduniqby v4.3.0
# lodash.sorteduniqby v4.4.0
The [lodash](https://lodash.com/) method `_.sortedUniqBy` exported as a [Node.js](https://nodejs.org/) module.
@@ -15,4 +15,4 @@ In Node.js:
var sortedUniqBy = require('lodash.sorteduniqby');
```
See the [documentation](https://lodash.com/docs#sortedUniqBy) or [package source](https://github.com/lodash/lodash/blob/4.3.0-npm-packages/lodash.sorteduniqby) for more details.
See the [documentation](https://lodash.com/docs#sortedUniqBy) or [package source](https://github.com/lodash/lodash/blob/4.4.0-npm-packages/lodash.sorteduniqby) for more details.

View File

@@ -1,5 +1,5 @@
/**
* lodash 4.3.0 (Custom Build) <https://lodash.com/>
* lodash (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright jQuery Foundation and other contributors <https://jquery.org/>
* Released under MIT license <https://lodash.com/license>
@@ -7,7 +7,7 @@
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
*/
var baseIteratee = require('lodash._baseiteratee'),
baseSortedUniqBy = require('lodash._basesorteduniqby');
baseSortedUniq = require('lodash._basesorteduniq');
/**
* This method is like `_.uniqBy` except that it's designed and optimized
@@ -27,7 +27,7 @@ var baseIteratee = require('lodash._baseiteratee'),
*/
function sortedUniqBy(array, iteratee) {
return (array && array.length)
? baseSortedUniqBy(array, baseIteratee(iteratee))
? baseSortedUniq(array, baseIteratee(iteratee))
: [];
}

View File

@@ -1,6 +1,6 @@
{
"name": "lodash.sorteduniqby",
"version": "4.3.0",
"version": "4.4.0",
"description": "The lodash method `_.sortedUniqBy` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
@@ -16,6 +16,6 @@
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" },
"dependencies": {
"lodash._baseiteratee": "~4.6.0",
"lodash._basesorteduniqby": "~4.0.0"
"lodash._basesorteduniq": "~4.12.0"
}
}