Files
lodash/.internal/asciiSize.js
2017-01-10 00:45:05 -08:00

13 lines
280 B
JavaScript

import baseProperty from './.internal/baseProperty.js';
/**
* Gets the size of an ASCII `string`.
*
* @private
* @param {string} string The string inspect.
* @returns {number} Returns the string size.
*/
const asciiSize = baseProperty('length');
export default asciiSize;