Bump to v3.9.2.

This commit is contained in:
jdalton
2015-05-24 01:44:03 -07:00
parent b6f9660ab0
commit 314048b069
23 changed files with 169 additions and 92 deletions

View File

@@ -2,7 +2,7 @@ var baseClone = require('../internal/baseClone'),
baseMatches = require('../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 @@ var baseClone = require('../internal/baseClone'),
baseMatchesProperty = require('../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 @@ var invokePath = require('../internal/invokePath'),
restParam = require('../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 @@ var invokePath = require('../internal/invokePath'),
restParam = require('../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 @@ var baseProperty = require('../internal/baseProperty'),
isKey = require('../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 @@ var baseGet = require('../internal/baseGet'),
toPath = require('../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