RemoveBgExtensionChrome/libs/lodash/.internal/asciiSize.js

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