Dashboard sipadu mbip
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_asciiSize.js 271B

123456789101112
  1. var baseProperty = require('./_baseProperty');
  2. /**
  3. * Gets the size of an ASCII `string`.
  4. *
  5. * @private
  6. * @param {string} string The string inspect.
  7. * @returns {number} Returns the string size.
  8. */
  9. var asciiSize = baseProperty('length');
  10. module.exports = asciiSize;