Compare commits

..

1 Commits

Author SHA1 Message Date
John-David Dalton
528e134995 Bump to v4.17.4. 2016-12-31 13:35:01 -06:00
4 changed files with 6 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
# lodash-es v4.17.3
# lodash-es v4.17.4
The [Lodash](https://lodash.com/) library exported as [ES](http://www.ecma-international.org/ecma-262/6.0/) modules.
@@ -7,4 +7,4 @@ Generated using [lodash-cli](https://www.npmjs.com/package/lodash-cli):
$ lodash modularize exports=es -o ./
```
See the [package source](https://github.com/lodash/lodash/tree/4.17.3-es) for more details.
See the [package source](https://github.com/lodash/lodash/tree/4.17.4-es) for more details.

View File

@@ -9,8 +9,8 @@ import isPlainObject from './isPlainObject.js';
* @param {string} key The key of the property to inspect.
* @returns {*} Returns the uncloned value or `undefined` to defer cloning to `_.cloneDeep`.
*/
function customOmitClone(value, key) {
return (key !== undefined && isPlainObject(value)) ? undefined : value;
function customOmitClone(value) {
return isPlainObject(value) ? undefined : value;
}
export default customOmitClone;

View File

@@ -45,7 +45,7 @@ import toInteger from './toInteger.js';
import lodash from './wrapperLodash.js';
/** Used as the semantic version number. */
var VERSION = '4.17.3';
var VERSION = '4.17.4';
/** Used to compose bitmasks for function metadata. */
var WRAP_BIND_KEY_FLAG = 2;

View File

@@ -1,6 +1,6 @@
{
"name": "lodash-es",
"version": "4.17.3",
"version": "4.17.4",
"description": "Lodash exported as ES modules.",
"keywords": "es6, modules, stdlib, util",
"homepage": "https://lodash.com/custom-builds",