fbc3a91956322c571241a499477eaa42fecfd129
[platform/framework/web/crosswalk-tizen.git] /
1 /**
2  * Used by `_.max` and `_.min` as the default callback for string values.
3  *
4  * @private
5  * @param {string} string The string to inspect.
6  * @returns {number} Returns the code unit of the first character of the string.
7  */
8 function charAtCallback(string) {
9   return string.charCodeAt(0);
10 }
11
12 module.exports = charAtCallback;