Sha256: f70b2238c5e9cf1c4fd70be1ddaec64abd3b3bba068b10ab3615b750f534cdba
Contents?: true
Size: 328 Bytes
Versions: 14
Compression:
Stored size: 328 Bytes
Contents
/** * 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;
Version data entries
14 entries across 7 versions & 1 rubygems