Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_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;