mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
13 lines
231 B
JavaScript
13 lines
231 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
|