mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-07 10:07:48 +00:00
13 lines
233 B
JavaScript
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;
|