mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 02:47:50 +00:00
Simplify function descriptions. [ci skip]
This commit is contained in:
17
lodash.js
17
lodash.js
@@ -1327,7 +1327,7 @@
|
|||||||
/*--------------------------------------------------------------------------*/
|
/*--------------------------------------------------------------------------*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new pristine `lodash` function using the given `context` object.
|
* Create a new pristine `lodash` function using the `context` object.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
@@ -3845,7 +3845,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a function that wraps `func` and invokes it with the optional `this`
|
* Creates a function that wraps `func` to invoke it with the optional `this`
|
||||||
* binding of `thisArg`.
|
* binding of `thisArg`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
@@ -4023,7 +4023,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a function that wraps `func` and invokes it with optional `this`
|
* Creates a function that wraps `func` to invoke it with optional `this`
|
||||||
* binding of `thisArg`, partial application, and currying.
|
* binding of `thisArg`, partial application, and currying.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
@@ -4136,8 +4136,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates the padding for `string` based on the given `length`. The `chars`
|
* Creates the padding for `string` based on `length`. The `chars` string
|
||||||
* string is truncated if the number of characters exceeds `length`.
|
* is truncated if the number of characters exceeds `length`.
|
||||||
*
|
*
|
||||||
* @private
|
* @private
|
||||||
* @param {string} string The string to create padding for.
|
* @param {string} string The string to create padding for.
|
||||||
@@ -4162,7 +4162,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a function that wraps `func` and invokes it with the optional `this`
|
* Creates a function that wraps `func` to invoke it with the optional `this`
|
||||||
* binding of `thisArg` and the `partials` prepended to those provided to
|
* binding of `thisArg` and the `partials` prepended to those provided to
|
||||||
* the wrapper.
|
* the wrapper.
|
||||||
*
|
*
|
||||||
@@ -10325,9 +10325,8 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an object that inherits from the given `prototype` object. If a
|
* Creates an object that inherits from the `prototype` object. If a `properties`
|
||||||
* `properties` object is provided its own enumerable properties are assigned
|
* object is provided its own enumerable properties are assigned to the created object.
|
||||||
* to the created object.
|
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @memberOf _
|
* @memberOf _
|
||||||
|
|||||||
Reference in New Issue
Block a user