projecte_ionic/node_modules/lodash/_asciiSize.js
2022-02-09 18:30:03 +01:00

13 lines
271 B
JavaScript
Executable file

var baseProperty = require('./_baseProperty');
/**
* Gets the size of an ASCII `string`.
*
* @private
* @param {string} string The string inspect.
* @returns {number} Returns the string size.
*/
var asciiSize = baseProperty('length');
module.exports = asciiSize;