Files
lodash/_asciiSize.js
2017-01-08 23:37:20 -08:00

13 lines
271 B
JavaScript

import baseProperty from './_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;