UNPKG

269 BJavaScriptView Raw
1import baseProperty from './_baseProperty.js';
2
3/**
4 * Gets the size of an ASCII `string`.
5 *
6 * @private
7 * @param {string} string The string inspect.
8 * @returns {number} Returns the string size.
9 */
10var asciiSize = baseProperty('length');
11
12export default asciiSize;