Bump to v4.0.6.

This commit is contained in:
John-David Dalton
2016-03-01 22:44:45 -08:00
parent a219b6c927
commit f547276d2a
41 changed files with 507 additions and 1252 deletions

View File

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

View File

@@ -1,5 +1,5 @@
/**
* lodash 4.0.5 (Custom Build) <https://lodash.com/>
* lodash 4.0.6 (Custom Build) <https://lodash.com/>
* Build: `lodash modularize exports="npm" -o ./`
* Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/>
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
@@ -45,8 +45,11 @@ var hasOwnProperty = objectProto.hasOwnProperty;
*/
var objectToString = objectProto.toString;
/** Built-in value references. */
var propertyIsEnumerable = objectProto.propertyIsEnumerable;
/** Detect if properties shadowing those on `Object.prototype` are non-enumerable. */
var nonEnumShadows = !({ 'valueOf': 1 }).propertyIsEnumerable('valueOf');
var nonEnumShadows = !propertyIsEnumerable.call({ 'valueOf': 1 }, 'valueOf');
/**
* Assigns `value` to `key` of `object` if the existing value is not equivalent

View File

@@ -1,6 +1,6 @@
{
"name": "lodash.assign",
"version": "4.0.5",
"version": "4.0.6",
"description": "The lodash method `_.assign` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",