diff --git a/lodash.src.js b/lodash.src.js index e344ab332..e0246a3b4 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -395,17 +395,6 @@ return value == null ? '' : (value + ''); } - /** - * 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); - } - /** * Used by `_.trim` and `_.trimLeft` to get the index of the first character * of `string` that is not found in `chars`.