source: node_modules/lodash/_asciiSize.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 271 bytes
RevLine 
[d24f17c]1var baseProperty = require('./_baseProperty');
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
12module.exports = asciiSize;
Note: See TracBrowser for help on using the repository browser.