9613231b63e99e996446d7713916bc58e0208ebbcad08180e67cb3714f1c09b00b1f211a0ab0bfde065c2ee69c063e0be3706e9a9e2e19d54a3119ee37cd99 404 B

123456789101112131415
  1. /** Used to match words composed of alphanumeric characters. */
  2. var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
  3. /**
  4. * Splits an ASCII `string` into an array of its words.
  5. *
  6. * @private
  7. * @param {string} The string to inspect.
  8. * @returns {Array} Returns the words of `string`.
  9. */
  10. function asciiWords(string) {
  11. return string.match(reAsciiWord) || [];
  12. }
  13. module.exports = asciiWords;