Bump to v3.9.2.

This commit is contained in:
jdalton
2015-05-24 01:42:23 -07:00
parent 30daf83737
commit 3d3907ff27
23 changed files with 68 additions and 48 deletions

View File

@@ -2,7 +2,7 @@ import baseClone from '../internal/baseClone';
import baseMatches from '../internal/baseMatches';
/**
* Creates a function which performs a deep comparison between a given object
* Creates a function that performs a deep comparison between a given object
* and `source`, returning `true` if the given object has equivalent property
* values, else `false`.
*

View File

@@ -2,7 +2,7 @@ import baseClone from '../internal/baseClone';
import baseMatchesProperty from '../internal/baseMatchesProperty';
/**
* Creates a function which compares the property value of `path` on a given
* Creates a function that compares the property value of `path` on a given
* object to `value`.
*
* **Note:** This method supports comparing arrays, booleans, `Date` objects,

View File

@@ -2,12 +2,14 @@ import invokePath from '../internal/invokePath';
import restParam from '../function/restParam';
/**
* Creates a function which invokes the method at `path` on a given object.
* Creates a function that invokes the method at `path` on a given object.
* Any additional arguments are provided to the invoked method.
*
* @static
* @memberOf _
* @category Utility
* @param {Array|string} path The path of the method to invoke.
* @param {...*} [args] The arguments to invoke the method with.
* @returns {Function} Returns the new function.
* @example
*

View File

@@ -2,13 +2,15 @@ import invokePath from '../internal/invokePath';
import restParam from '../function/restParam';
/**
* The opposite of `_.method`; this method creates a function which invokes
* the method at a given path on `object`.
* The opposite of `_.method`; this method creates a function that invokes
* the method at a given path on `object`. Any additional arguments are
* provided to the invoked method.
*
* @static
* @memberOf _
* @category Utility
* @param {Object} object The object to query.
* @param {...*} [args] The arguments to invoke the method with.
* @returns {Function} Returns the new function.
* @example
*

View File

@@ -1,5 +1,5 @@
/**
* A no-operation function which returns `undefined` regardless of the
* A no-operation function that returns `undefined` regardless of the
* arguments it receives.
*
* @static

View File

@@ -3,7 +3,7 @@ import basePropertyDeep from '../internal/basePropertyDeep';
import isKey from '../internal/isKey';
/**
* Creates a function which returns the property value at `path` on a
* Creates a function that returns the property value at `path` on a
* given object.
*
* @static

View File

@@ -2,7 +2,7 @@ import baseGet from '../internal/baseGet';
import toPath from '../internal/toPath';
/**
* The opposite of `_.property`; this method creates a function which returns
* The opposite of `_.property`; this method creates a function that returns
* the property value at a given path on `object`.
*
* @static