mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
Consistent use of of instead of on in path related docs. [ci skip]
This commit is contained in:
14
lodash.js
14
lodash.js
@@ -3894,7 +3894,7 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Invokes the method at `path` on `object`.
|
||||
* Invokes the method at `path` of `object`.
|
||||
*
|
||||
* @private
|
||||
* @param {Object} object The object to query.
|
||||
@@ -8947,7 +8947,7 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the property value at `path` of `object`. If the resolved value is
|
||||
* Gets the value at `path` of `object`. If the resolved value is
|
||||
* `undefined` the `defaultValue` is used in its place.
|
||||
*
|
||||
* @static
|
||||
@@ -10727,7 +10727,7 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a function that compares the value at `path` on a given object
|
||||
* Creates a function that compares the value at `path` of a given object
|
||||
* to `srcValue`.
|
||||
*
|
||||
* **Note:** This method supports comparing arrays, booleans, `Date` objects,
|
||||
@@ -10754,7 +10754,7 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a function that invokes the method at `path` on a given object.
|
||||
* Creates a function that invokes the method at `path` of a given object.
|
||||
* Any additional arguments are provided to the invoked method.
|
||||
*
|
||||
* @static
|
||||
@@ -10784,7 +10784,7 @@
|
||||
|
||||
/**
|
||||
* The opposite of `_.method`; this method creates a function that invokes
|
||||
* the method at a given path on `object`. Any additional arguments are
|
||||
* the method at a given path of `object`. Any additional arguments are
|
||||
* provided to the invoked method.
|
||||
*
|
||||
* @static
|
||||
@@ -10918,7 +10918,7 @@
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a function that returns the value at `path` on a given object.
|
||||
* Creates a function that returns the value at `path` of a given object.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
@@ -10944,7 +10944,7 @@
|
||||
|
||||
/**
|
||||
* The opposite of `_.property`; this method creates a function that returns
|
||||
* the property value at a given path on `object`.
|
||||
* the value at a given path of `object`.
|
||||
*
|
||||
* @static
|
||||
* @memberOf _
|
||||
|
||||
Reference in New Issue
Block a user