Files
lodash/.internal/asciiSize.js
John-David Dalton 0aa7a62dc3 Simplify asciiSize.
2017-01-10 17:49:05 -08:00

13 lines
233 B
JavaScript

/**
* Gets the size of an ASCII `string`.
*
* @private
* @param {string} string The string inspect.
* @returns {number} Returns the string size.
*/
function asciiSize({ length }) {
return length;
}
export default asciiSize;