Comparing version 4.2.0 to 4.2.1
@@ -47,3 +47,5 @@ import createWrapper from './_createWrapper'; | ||
if (partials.length) { | ||
var holders = replaceHolders(partials, bind.placeholder); | ||
var placeholder = bind.placeholder, | ||
holders = replaceHolders(partials, placeholder); | ||
bitmask |= PARTIAL_FLAG; | ||
@@ -50,0 +52,0 @@ } |
@@ -57,3 +57,5 @@ import createWrapper from './_createWrapper'; | ||
if (partials.length) { | ||
var holders = replaceHolders(partials, bindKey.placeholder); | ||
var placeholder = bindKey.placeholder, | ||
holders = replaceHolders(partials, placeholder); | ||
bitmask |= PARTIAL_FLAG; | ||
@@ -60,0 +62,0 @@ } |
@@ -22,3 +22,3 @@ import isObject from './isObject'; | ||
* **Note:** If `leading` and `trailing` options are `true`, `func` is invoked | ||
* on the trailing edge of the timeout only if the the debounced function is | ||
* on the trailing edge of the timeout only if the debounced function is | ||
* invoked more than once during the `wait` timeout. | ||
@@ -25,0 +25,0 @@ * |
/** | ||
* @license | ||
* lodash 4.2.0 (Custom Build) <https://lodash.com/> | ||
* lodash 4.2.1 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="es" -o ./` | ||
@@ -47,3 +47,3 @@ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> | ||
/** Used as the semantic version number. */ | ||
var VERSION = '4.2.0'; | ||
var VERSION = '4.2.1'; | ||
@@ -50,0 +50,0 @@ /** Used to compose bitmasks for wrapper metadata. */ |
/** | ||
* @license | ||
* lodash 4.2.0 (Custom Build) <https://lodash.com/> | ||
* lodash 4.2.1 (Custom Build) <https://lodash.com/> | ||
* Build: `lodash modularize exports="es" -o ./` | ||
@@ -5,0 +5,0 @@ * Copyright 2012-2016 The Dojo Foundation <http://dojofoundation.org/> |
{ | ||
"name": "lodash-es", | ||
"version": "4.2.0", | ||
"version": "4.2.1", | ||
"description": "Lodash exported as ES modules.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://lodash.com/custom-builds", |
@@ -41,3 +41,5 @@ import createWrapper from './_createWrapper'; | ||
var partial = rest(function(func, partials) { | ||
var holders = replaceHolders(partials, partial.placeholder); | ||
var placeholder = partial.placeholder, | ||
holders = replaceHolders(partials, placeholder); | ||
return createWrapper(func, PARTIAL_FLAG, undefined, partials, holders); | ||
@@ -44,0 +46,0 @@ }); |
@@ -40,3 +40,5 @@ import createWrapper from './_createWrapper'; | ||
var partialRight = rest(function(func, partials) { | ||
var holders = replaceHolders(partials, partialRight.placeholder); | ||
var placeholder = partialRight.placeholder, | ||
holders = replaceHolders(partials, placeholder); | ||
return createWrapper(func, PARTIAL_RIGHT_FLAG, undefined, partials, holders); | ||
@@ -43,0 +45,0 @@ }); |
@@ -6,3 +6,3 @@ import baseIteratee from './_baseIteratee'; | ||
* This method is like `_.pullAll` except that it accepts `iteratee` which is | ||
* invoked for each element of `array` and `values` to to generate the criterion | ||
* invoked for each element of `array` and `values` to generate the criterion | ||
* by which uniqueness is computed. The iteratee is invoked with one argument: (value). | ||
@@ -9,0 +9,0 @@ * |
@@ -1,2 +0,2 @@ | ||
# lodash-es v4.2.0 | ||
# lodash-es v4.2.1 | ||
@@ -10,2 +10,2 @@ The [lodash](https://lodash.com/) library exported as [ES](http://www.ecma-international.org/ecma-262/6.0/) modules. | ||
See the [package source](https://github.com/lodash/lodash/tree/4.2.0-es) for more details. | ||
See the [package source](https://github.com/lodash/lodash/tree/4.2.1-es) for more details. |
@@ -18,3 +18,3 @@ import debounce from './debounce'; | ||
* **Note:** If `leading` and `trailing` options are `true`, `func` is invoked | ||
* on the trailing edge of the timeout only if the the throttled function is | ||
* on the trailing edge of the timeout only if the throttled function is | ||
* invoked more than once during the `wait` timeout. | ||
@@ -21,0 +21,0 @@ * |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
532184
16605