Bump to v4.1.3.

This commit is contained in:
John-David Dalton
2016-02-24 08:06:57 -08:00
parent a862defba0
commit 4e2d859e65
67 changed files with 1121 additions and 546 deletions

View File

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

View File

@@ -1,5 +1,5 @@
/**
* lodash 4.1.2 (Custom Build) <https://lodash.com/>
* lodash 4.1.3 (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>
@@ -53,9 +53,9 @@ function getPlaceholder(func) {
}
/**
* Creates a function that invokes `func` with `partial` arguments prepended
* to those provided to the new function. This method is like `_.bind` except
* it does **not** alter the `this` binding.
* Creates a function that invokes `func` with `partials` prepended to the
* arguments it receives. This method is like `_.bind` except it does **not**
* alter the `this` binding.
*
* The `_.partial.placeholder` value, which defaults to `_` in monolithic
* builds, may be used as a placeholder for partially applied arguments.
@@ -65,6 +65,7 @@ function getPlaceholder(func) {
*
* @static
* @memberOf _
* @since 0.2.0
* @category Function
* @param {Function} func The function to partially apply arguments to.
* @param {...*} [partials] The arguments to be partially applied.

View File

@@ -1,6 +1,6 @@
{
"name": "lodash.partial",
"version": "4.1.2",
"version": "4.1.3",
"description": "The lodash method `_.partial` exported as a module.",
"homepage": "https://lodash.com/",
"icon": "https://lodash.com/icon.svg",
@@ -15,7 +15,7 @@
"repository": "lodash/lodash",
"scripts": { "test": "echo \"See https://travis-ci.org/lodash/lodash-cli for testing details.\"" },
"dependencies": {
"lodash._createwrapper": "^4.0.0",
"lodash._createwrapper": "~4.0.0",
"lodash.rest": "^4.0.0"
}
}