Files
biomedjs/node_modules/lodash/internal/charAtCallback.js

13 lines
328 B
JavaScript
Raw Permalink Normal View History

2015-04-20 05:31:12 -04:00
/**
* 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);
}
module.exports = charAtCallback;