mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
13 lines
326 B
JavaScript
13 lines
326 B
JavaScript
/**
|
|
* Used by `_.max` and `_.min` as the default callback for string values.
|
|
*
|
|
* @private
|
|
* @param {string} string The string to inspect.
|
|
* @returns {number} Returns the code unit of the first character of the string.
|
|
*/
|
|
function charAtCallback(string) {
|
|
return string.charCodeAt(0);
|
|
}
|
|
|
|
export default charAtCallback;
|