Files
lodash/_asciiSize.js
John-David Dalton fff78cbd5a Bump to v4.15.0.
2016-08-11 23:27:31 -07:00

14 lines
289 B
JavaScript

define(['./_baseProperty'], function(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');
return asciiSize;
});